[llvm-commits] CVS: llvm-test/TEST.nightly.Makefile TEST.llc.Makefile

Evan Cheng evan.cheng at apple.com
Wed Mar 21 12:59:22 PDT 2007



Changes in directory llvm-test:

TEST.nightly.Makefile updated: 1.45 -> 1.46
TEST.llc.Makefile updated: 1.5 -> 1.6
---
Log message:

Pass  to llc to get accurate timing info.

---
Diffs of the changes:  (+3 -3)

 TEST.llc.Makefile     |    2 +-
 TEST.nightly.Makefile |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm-test/TEST.nightly.Makefile
diff -u llvm-test/TEST.nightly.Makefile:1.45 llvm-test/TEST.nightly.Makefile:1.46
--- llvm-test/TEST.nightly.Makefile:1.45	Fri Feb  2 22:30:17 2007
+++ llvm-test/TEST.nightly.Makefile	Wed Mar 21 14:58:59 2007
@@ -61,7 +61,7 @@
 	-head -n 100 Output/$*.exe-llc >> $@
 	@-if test -f Output/$*.exe-llc; then \
 	  echo "TEST-PASS: llc $(RELDIR)/$*" >> $@;\
-	  $(LLC) $< -o /dev/null -f $(TIMEOPT) >> $@ 2>&1; \
+	  $(LLC) $< $(LLCFLAGS) -o /dev/null -f $(TIMEOPT) >> $@ 2>&1; \
 	  printf "TEST-RESULT-llc: " >> $@;\
 	  grep "Total Execution Time" $@.info >> $@;\
 	  printf "TEST-RESULT-llc-time: " >> $@;\
@@ -78,7 +78,7 @@
 	-head -n 100 Output/$*.exe-llc-beta >> $@
 	@-if test -f Output/$*.exe-llc-beta; then \
 	  echo "TEST-PASS: llc-beta $(RELDIR)/$*" >> $@;\
-	  $(LLC) $< $(LLCBETAOPTION) -o /dev/null -f $(TIMEOPT) >> $@ 2>&1; \
+	  $(LLC) $< $(LLCFLAGS) $(LLCBETAOPTION) -o /dev/null -f $(TIMEOPT) >> $@ 2>&1; \
 	  printf "TEST-RESULT-llc-beta: " >> $@;\
 	  grep "Total Execution Time" $@.info >> $@;\
 	  printf "TEST-RESULT-llc-beta-time: " >> $@;\


Index: llvm-test/TEST.llc.Makefile
diff -u llvm-test/TEST.llc.Makefile:1.5 llvm-test/TEST.llc.Makefile:1.6
--- llvm-test/TEST.llc.Makefile:1.5	Sat Jan 15 21:16:09 2005
+++ llvm-test/TEST.llc.Makefile	Wed Mar 21 14:58:59 2007
@@ -6,7 +6,7 @@
 #
 ##===----------------------------------------------------------------------===##
 
-LLC_OPTS = -f -o=/dev/null -stats -time-passes -regalloc=linearscan
+LLC_OPTS = $(LLCFLAGS) -f -o=/dev/null -stats -time-passes -regalloc=linearscan
 CURDIR  := $(shell cd .; pwd)
 PROGDIR := $(PROJ_SRC_ROOT)
 RELDIR  := $(subst $(PROGDIR),,$(CURDIR))






More information about the llvm-commits mailing list