summaryrefslogtreecommitdiff
path: root/tools/llc/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-23 14:36:22 +0000
committerChris Lattner <sabre@nondot.org>2005-04-23 14:36:22 +0000
commit3952bc6f39472cf9007ce2dfd5ff1ff5fdcd8bd2 (patch)
treec741705e1a97f5029e386a5cfab747504172e2c7 /tools/llc/Makefile
parent4283d49e06cdf09963fddcd144dd7625070cd46d (diff)
downloadllvm-3952bc6f39472cf9007ce2dfd5ff1ff5fdcd8bd2.tar.gz
llvm-3952bc6f39472cf9007ce2dfd5ff1ff5fdcd8bd2.tar.bz2
llvm-3952bc6f39472cf9007ce2dfd5ff1ff5fdcd8bd2.tar.xz
Always enable the C backend. This fixes a *vast* number of failures on the
testers last night, as llc was not getting the cbe linked in. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc/Makefile')
-rw-r--r--tools/llc/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/llc/Makefile b/tools/llc/Makefile
index c4af6d806a..de56b856cc 100644
--- a/tools/llc/Makefile
+++ b/tools/llc/Makefile
@@ -18,10 +18,8 @@ include $(LEVEL)/Makefile.config
# Initialize the USEDLIBS so we can add to it
USEDLIBS :=
-# Check for LLVMCBackend target
-ifneq ($(strip $(filter CBackend,$(TARGETS_TO_BUILD))),)
+# Always add the C Backend
USEDLIB += LLVMCBackend
-endif
# Check for Skeleton target
ifneq ($(strip $(filter Skeleton,$(TARGETS_TO_BUILD))),)