[llvm-commits] [test-suite] r105727 - in /test-suite/trunk: TEST.beta-compare.Makefile TEST.llcdbg.Makefile TEST.m2regllcdbg.Makefile

Evan Cheng evan.cheng at apple.com
Wed Jun 9 09:17:04 PDT 2010


Author: evancheng
Date: Wed Jun  9 11:17:04 2010
New Revision: 105727

URL: http://llvm.org/viewvc/llvm-project?rev=105727&view=rev
Log:
llc -f option is gone.

Modified:
    test-suite/trunk/TEST.beta-compare.Makefile
    test-suite/trunk/TEST.llcdbg.Makefile
    test-suite/trunk/TEST.m2regllcdbg.Makefile

Modified: test-suite/trunk/TEST.beta-compare.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.beta-compare.Makefile?rev=105727&r1=105726&r2=105727&view=diff
==============================================================================
--- test-suite/trunk/TEST.beta-compare.Makefile (original)
+++ test-suite/trunk/TEST.beta-compare.Makefile Wed Jun  9 11:17:04 2010
@@ -5,7 +5,7 @@
 #
 ##===----------------------------------------------------------------------===##
 
-LLC_OPTS = $(LLCFLAGS) -f -o=/dev/null -stats -time-passes
+LLC_OPTS = $(LLCFLAGS) -o=/dev/null -stats -time-passes
 CURDIR  := $(shell cd .; pwd)
 PROGDIR := $(PROJ_SRC_ROOT)
 RELDIR  := $(subst $(PROGDIR),,$(CURDIR))

Modified: test-suite/trunk/TEST.llcdbg.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.llcdbg.Makefile?rev=105727&r1=105726&r2=105727&view=diff
==============================================================================
--- test-suite/trunk/TEST.llcdbg.Makefile (original)
+++ test-suite/trunk/TEST.llcdbg.Makefile Wed Jun  9 11:17:04 2010
@@ -26,7 +26,7 @@
 	$(LOPT) -strip-debug-declare -strip-nondebug $< -f -o $@
 
 Output/%.t1b.s: Output/%.t1a.bc Output/.dir $(LLC)
-	$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
+	$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
 
 Output/%.first.s: Output/%.t1b.s Output/.dir $(LLC)
 	grep -v '.long' < $< | grep -v '.byte' | grep -v '.short' | grep -v '.asci' | grep -v '.quad' | grep -v '## DW_AT' | grep -v '## Abbrev' | grep -v '## End Of Children' | grep -v '## DIE' | grep -v '## $$' | grep -v '^$$' > $@
@@ -35,7 +35,7 @@
 	$(LOPT) -strip-nondebug $< -f -o $@
 
 Output/%.t2b.s: Output/%.t2a.bc Output/.dir $(LLC)
-	$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
+	$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
 
 Output/%.second.s: Output/%.t2b.s Output/.dir
 	grep -v DEBUG_VALUE < $< | grep -v '.long' | grep -v '.byte' | grep -v '.short' | grep -v '.asci' | grep -v '## DW_AT' | grep -v '## Abbrev' |  grep -v '## End Of Children' | grep -v '## DIE' | grep -v '## $$' | grep -v '.quad' | grep -v '^$$' > $@

Modified: test-suite/trunk/TEST.m2regllcdbg.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.m2regllcdbg.Makefile?rev=105727&r1=105726&r2=105727&view=diff
==============================================================================
--- test-suite/trunk/TEST.m2regllcdbg.Makefile (original)
+++ test-suite/trunk/TEST.m2regllcdbg.Makefile Wed Jun  9 11:17:04 2010
@@ -29,7 +29,7 @@
 	$(LOPT) -mem2reg $< -f -o $@
 
 Output/%.t1c.s: Output/%.t1b.bc Output/.dir $(LLC)
-	$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
+	$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
 
 Output/%.first.s: Output/%.t1c.s Output/.dir $(LLC)
 	grep -v '\.long' < $< | grep -v '\.byte' | grep -v '\.short' | grep -v '\.asci' | grep -v '\.quad' | grep -v '## DW_AT' | grep -v '## Abbrev' | grep -v '## End Of Children' | grep -v '## Extended Op' | grep -v 'Ltmp[0-9]' | grep -v '## DIE' | grep -v '## $$' | grep -v '^#.*' | grep -v '^$$' > $@
@@ -41,7 +41,7 @@
 	$(LOPT) -mem2reg $< -f -o $@
 
 Output/%.t2c.s: Output/%.t2b.bc Output/.dir $(LLC)
-	$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
+	$(LLC) $(LLC_DEBUG_FLAGS) $< -o $@
 
 Output/%.second.s: Output/%.t2c.s Output/.dir
 	grep -v DEBUG_VALUE < $< | grep -v '\.long' | grep -v '\.byte' | grep -v '\.short' | grep -v '\.asci' | grep -v '## DW_AT' | grep -v '## Abbrev' |  grep -v '## End Of Children' | grep -v '## Extended Op' | grep -v 'Ltmp[0-9]' | grep -v '## DIE' | grep -v '## $$' | grep -v '\.quad' | grep -v '^#' | grep -v '^$$' > $@





More information about the llvm-commits mailing list