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

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 21 20:07:58 PST 2005



Changes in directory llvm-test:

TEST.dsgraph.Makefile updated: 1.15 -> 1.16
---
Log message:

don't accumulate timing runs.


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

 TEST.dsgraph.Makefile |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm-test/TEST.dsgraph.Makefile
diff -u llvm-test/TEST.dsgraph.Makefile:1.15 llvm-test/TEST.dsgraph.Makefile:1.16
--- llvm-test/TEST.dsgraph.Makefile:1.15	Mon Mar 21 22:05:01 2005
+++ llvm-test/TEST.dsgraph.Makefile	Mon Mar 21 22:07:44 2005
@@ -20,10 +20,10 @@
 $(PROGRAMS_TO_TEST:%=Output/%.$(TEST).report.txt): \
 Output/%.$(TEST).report.txt: Output/%.lib.bc Output/%.LOC.txt $(LANALYZE) $(LOPT)
 	@# Gather data
-	-($(LANALYZE) -$(PASS)datastructure $(ANALYZE_OPTS) $<)>> $@.time.1 2>&1
+	-($(LANALYZE) -$(PASS)datastructure $(ANALYZE_OPTS) $<)> $@.time.1 2>&1
 	-($(LANALYZE) $(MEM) -$(PASS)datastructure -disable-verify $<)> $@.mem.1 2>&1
-	-($(LOPT) -steens-aa -time-passes -disable-output $<) >> $@.time.2 2>&1
-	-($(LOPT) -steens-aa $(MEM) -disable-output $<) >> $@.mem.2 2>&1
+	-($(LOPT) -steens-aa -time-passes -disable-output $<) > $@.time.2 2>&1
+	-($(LOPT) -steens-aa $(MEM) -disable-output $<) > $@.mem.2 2>&1
 	@# Emit data.
 	@echo -n "LOC: " > $@
 	@cat Output/$*.LOC.txt >> $@






More information about the llvm-commits mailing list