[llvm-commits] [test-suite] r94476 - /test-suite/trunk/TEST.llcdbg.Makefile
Dale Johannesen
dalej at apple.com
Mon Jan 25 16:02:23 PST 2010
Author: johannes
Date: Mon Jan 25 18:02:23 2010
New Revision: 94476
URL: http://llvm.org/viewvc/llvm-project?rev=94476&view=rev
Log:
Strip yet more dwarf info (compensating for recent
asmprinter changes).
Modified:
test-suite/trunk/TEST.llcdbg.Makefile
Modified: test-suite/trunk/TEST.llcdbg.Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/TEST.llcdbg.Makefile?rev=94476&r1=94475&r2=94476&view=diff
==============================================================================
--- test-suite/trunk/TEST.llcdbg.Makefile (original)
+++ test-suite/trunk/TEST.llcdbg.Makefile Mon Jan 25 18:02:23 2010
@@ -29,7 +29,7 @@
$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
Output/%.first.s: Output/%.t1b.s Output/.dir $(LLC)
- grep -v '.long' < $< | grep -v '.byte' | grep -v '.short' | grep -v '.asciz' | grep -v '.quad' | grep -v '## DW_AT' | grep -v '## End Of Children' | grep -v '## DIE' | 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 '## DIE' | grep -v '## $$' | grep -v '^$$' > $@
Output/%.t2a.bc: Output/%.linked.rbc Output/.dir $(LOPT)
$(LOPT) -strip-nondebug $< -f -o $@
@@ -38,7 +38,7 @@
$(LLC) $(LLC_DEBUG_FLAGS) $< -f -o $@
Output/%.second.s: Output/%.t2b.s Output/.dir
- grep -v DEBUG_VALUE < $< | grep -v '.long' | grep -v '.byte' | grep -v '.short' | grep -v '.asciz' | grep -v '## DW_AT' | grep -v '## End Of Children' | grep -v '## DIE' | grep -v '.quad' | 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 '## DIE' | grep -v '## $$' | grep -v '.quad' | grep -v '^$$' > $@
Output/%.diff: Output/%.first.s Output/%.second.s
@-if diff $^ > $@; then \
More information about the llvm-commits
mailing list