aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-01-14 08:30:36 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-01-14 08:30:36 +0000
commit49c0a93a96d258215b8cdc38d1cebfd7ecb98cfc (patch)
tree8787f6e42baa9aad1b355602ac7ecc700c46c1a5
parentb64a67e654f2a380ff0885fb44caa92c44fa7a63 (diff)
No need to pass CFLAGS to compile llc created assembly files.
git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@45958 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.programs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.programs b/Makefile.programs
index 4259e0e4..ef43911f 100644
--- a/Makefile.programs
+++ b/Makefile.programs
@@ -374,11 +374,11 @@ endif
#
$(PROGRAMS_TO_TEST:%=Output/%.llc): \
Output/%.llc: Output/%.llc.s
- -$(LLVMGCCLD) $(CFLAGS) $< -o $@ $(LLCLIBS) $(LLCASSEMBLERFLAGS) $(TARGET_FLAGS) $(LDFLAGS)
+ -$(LLVMGCCLD) $< -o $@ $(LLCLIBS) $(LLCASSEMBLERFLAGS) $(TARGET_FLAGS) $(LDFLAGS)
$(PROGRAMS_TO_TEST:%=Output/%.llc-beta): \
Output/%.llc-beta: Output/%.llc-beta.s
- -$(LLVMGCCLD) $(CFLAGS) $< -o $@ $(LLCLIBS) $(LLCASSEMBLERFLAGS) $(TARGET_FLAGS) $(LDFLAGS)
+ -$(LLVMGCCLD) $< -o $@ $(LLCLIBS) $(LLCASSEMBLERFLAGS) $(TARGET_FLAGS) $(LDFLAGS)
#