[llvm-commits] [test-suite] r120983 - /test-suite/trunk/Makefile.programs

Evan Cheng evan.cheng at apple.com
Sun Dec 5 20:06:38 PST 2010


Author: evancheng
Date: Sun Dec  5 22:06:38 2010
New Revision: 120983

URL: http://llvm.org/viewvc/llvm-project?rev=120983&view=rev
Log:
Add LLCOPTION to make it easier to test different llc options for llc and llc-beta.

Modified:
    test-suite/trunk/Makefile.programs

Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=120983&r1=120982&r2=120983&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Sun Dec  5 22:06:38 2010
@@ -267,11 +267,10 @@
 LLCBETAOPTION := -enable-sparc-v9-insts
 endif
 ifeq ($(ARCH),ARM)
-LLCBETAOPTION := -enable-optimize-cmps
-#LLCBETAOPTION := -arm-code-placement
+LLCBETAOPTION :=
 endif
 ifeq ($(ARCH),THUMB)
-LLCBETAOPTION := -arm-code-placement
+LLCBETAOPTION :=
 endif
 
 print-llcbeta-option:
@@ -411,7 +410,7 @@
 $(PROGRAMS_TO_TEST:%=Output/%.llc.s): \
 Output/%.llc.s: Output/%.llvm.bc $(LLC)
 	$(VERB) $(RM) -f $(CURDIR)/$@.info
-	$(RUNTOOLSAFELY) $(LLC) $(LLCFLAGS) $< -o $@ -info-output-file=$(CURDIR)/$@.info $(STATS)
+	$(RUNTOOLSAFELY) $(LLC) $(LLCFLAGS) $(LLCOPTION) $< -o $@ -info-output-file=$(CURDIR)/$@.info $(STATS)
 
 $(PROGRAMS_TO_TEST:%=Output/%.llc-beta.s): \
 Output/%.llc-beta.s: Output/%.llvm.bc $(LLC)





More information about the llvm-commits mailing list