[llvm-commits] [test-suite] r102801 - /test-suite/trunk/TEST.optllcdbg.Makefile

Dale Johannesen dalej at apple.com
Fri Apr 30 16:18:50 PDT 2010


Author: johannes
Date: Fri Apr 30 18:18:50 2010
New Revision: 102801

URL: http://llvm.org/viewvc/llvm-project?rev=102801&view=rev
Log:
Fix title comment and remove -f from llc lines, which
has apparently been disabled.


Modified:
    test-suite/trunk/TEST.optllcdbg.Makefile

Modified: test-suite/trunk/TEST.optllcdbg.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.optllcdbg.Makefile?rev=102801&r1=102800&r2=102801&view=diff
==============================================================================
--- test-suite/trunk/TEST.optllcdbg.Makefile (original)
+++ test-suite/trunk/TEST.optllcdbg.Makefile Fri Apr 30 18:18:50 2010
@@ -1,4 +1,4 @@
-##===- TEST.llcdbg.Makefile --------------------------------*- Makefile -*-===##
+##===- TEST.optllcdbg.Makefile -----------------------------*- Makefile -*-===##
 #
 # This test checks whether presence of debug declarations influences
 # the code generator or not. 
@@ -30,7 +30,7 @@
 	$(LOPT) $(OPT_FLAGS) $< -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 '^$$' | grep -v '__debug_str' | grep -v 'Lstring' > $@
@@ -42,7 +42,7 @@
 	$(LOPT) $(OPT_FLAGS) $< -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 '^$$' | grep -v '__debug_str' | grep -v 'Lstring' > $@





More information about the llvm-commits mailing list