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" [EMAIL PROTECTED] >> $@;\ 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" [EMAIL PROTECTED] >> $@;\ 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)) _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits