Changes in directory llvm-test:
TEST.nightly.Makefile updated: 1.46 -> 1.47 --- Log message: 1) Measure the actual time the optimize a file, rather than just the time to pass it through opt 2) Measure the optimization time of the raw bytecode, rather than the time to reoptimized the already optimized bytecode. NOTE: This will SIGNIFICANTLY increase GCCAS times on the nightly testers. This is not an error. The previously reported times were not an accurate reflection of real optimization times. --- Diffs of the changes: (+2 -2) TEST.nightly.Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index: llvm-test/TEST.nightly.Makefile diff -u llvm-test/TEST.nightly.Makefile:1.46 llvm-test/TEST.nightly.Makefile:1.47 --- llvm-test/TEST.nightly.Makefile:1.46 Wed Mar 21 14:58:59 2007 +++ llvm-test/TEST.nightly.Makefile Wed Jun 20 13:06:48 2007 @@ -33,8 +33,8 @@ $(PROGRAMS_TO_TEST:%=Output/%.nightly.compile.report.txt): \ Output/%.nightly.compile.report.txt: Output/%.llvm.bc $(LOPT) @echo > $@ - @echo '$(LOPT) Output/$*.linked.bc -f -o /dev/null $(TIMEOPT) $(EXTRA_LOPT_OPTIONS) >>$@ 2>&1' - @-if ($(LOPT) Output/$*.linked.bc -f -o /dev/null $(TIMEOPT) $(EXTRA_LOPT_OPTIONS) >>$@ 2>&1)\ + @echo '$(LOPT) -std-compile-opts Output/$*.linked.rbc -f -o /dev/null $(TIMEOPT) $(EXTRA_LOPT_OPTIONS) >>$@ 2>&1' + @-if ($(LOPT) -std-compile-opts Output/$*.linked.rbc -f -o /dev/null $(TIMEOPT) $(EXTRA_LOPT_OPTIONS) >>$@ 2>&1)\ ;then \ echo "TEST-PASS: compile $(RELDIR)/$*" >> $@;\ printf "TEST-RESULT-compile: " >> $@;\ _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits