[llvm-commits] [test-suite] r94035 - /test-suite/trunk/TEST.llcdbg.Makefile

Dale Johannesen dalej at apple.com
Wed Jan 20 13:37:18 PST 2010


Author: johannes
Date: Wed Jan 20 15:37:18 2010
New Revision: 94035

URL: http://llvm.org/viewvc/llvm-project?rev=94035&view=rev
Log:
Strip out  more dwarf info.


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=94035&r1=94034&r2=94035&view=diff

==============================================================================
--- test-suite/trunk/TEST.llcdbg.Makefile (original)
+++ test-suite/trunk/TEST.llcdbg.Makefile Wed Jan 20 15:37:18 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 '^$$' > $@
+	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 '^$$' > $@
 
 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 '^$$' > $@
+	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 '^$$' > $@
 
 Output/%.diff: Output/%.first.s Output/%.second.s
 	@-if diff $^ > $@; then \





More information about the llvm-commits mailing list