[llvm-commits] [test-suite] r99909 - /test-suite/trunk/TEST.m2regllcdbg.Makefile

Dale Johannesen dalej at apple.com
Tue Mar 30 11:41:12 PDT 2010


Author: johannes
Date: Tue Mar 30 13:41:12 2010
New Revision: 99909

URL: http://llvm.org/viewvc/llvm-project?rev=99909&view=rev
Log:
Strip out another comment that's started appearing in
Dwarf debug info tables.


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

Modified: test-suite/trunk/TEST.m2regllcdbg.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.m2regllcdbg.Makefile?rev=99909&r1=99908&r2=99909&view=diff
==============================================================================
--- test-suite/trunk/TEST.m2regllcdbg.Makefile (original)
+++ test-suite/trunk/TEST.m2regllcdbg.Makefile Tue Mar 30 13:41:12 2010
@@ -32,7 +32,7 @@
 	$(LLC) $(LLC_DEBUG_FLAGS) $< -f -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 '## DIE' | grep -v '## $$' | grep -v '^#.*' | grep -v '^$$' > $@
+	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 '## DIE' | grep -v '## $$' | grep -v '^#.*' | grep -v '^$$' > $@
 
 Output/%.t2a.bc: Output/%.linked.rbc Output/.dir $(LOPT)
 	$(LOPT) -strip-nondebug $< -f -o $@
@@ -44,7 +44,7 @@
 	$(LLC) $(LLC_DEBUG_FLAGS) $< -f -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 '## DIE' | grep -v '## $$' | grep -v '\.quad' | grep -v '^#' | grep -v '^$$' > $@
+	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 '## DIE' | grep -v '## $$' | grep -v '\.quad' | grep -v '^#' | grep -v '^$$' > $@
 
 Output/%.diff: Output/%.first.s Output/%.second.s
 	@-if diff $^ > $@; then \





More information about the llvm-commits mailing list