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

Jim Grosbach grosbach at apple.com
Tue Jun 8 13:09:23 PDT 2010


Author: grosbach
Date: Tue Jun  8 15:09:23 2010
New Revision: 105635

URL: http://llvm.org/viewvc/llvm-project?rev=105635&view=rev
Log:
add more debug info filters to optllcdbg test

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=105635&r1=105634&r2=105635&view=diff
==============================================================================
--- test-suite/trunk/TEST.optllcdbg.Makefile (original)
+++ test-suite/trunk/TEST.optllcdbg.Makefile Tue Jun  8 15:09:23 2010
@@ -38,6 +38,7 @@
 	  | grep -v '\.short' \
 	  | grep -v '\.asci' \
 	  | grep -v '\.quad' \
+	  | grep -v '\.align' \
 	  | grep -v '## DW_AT' \
 	  | grep -v '## Abbrev' \
 	  | grep -v '## End Of Children' \
@@ -53,7 +54,11 @@
 	  | grep -v 'debug_loc' \
 	  | grep -v 'Lpubtypes' \
 	  | grep -v 'Lpubnames' \
-	  | grep -v 'Linfo_' > $@
+	  | grep -v 'Linfo_' \
+	  | grep -v 'Lfunc_begin' \
+	  | grep -v 'Lfunc_end' \
+	  | grep -v 'Ldebug_frame_begin' \
+	  | grep -v 'Ldebug_frame_end' > $@
 
 Output/%.t2a.bc: Output/%.linked.rbc Output/.dir $(LOPT)
 	$(LOPT) -strip-nondebug $< -f -o $@
@@ -70,6 +75,7 @@
 	  | grep -v '\.short' \
 	  | grep -v '\.asci' \
 	  | grep -v '\.quad' \
+	  | grep -v '\.align' \
 	  | grep -v '## DW_AT' \
 	  | grep -v '## Abbrev' \
 	  | grep -v '## End Of Children' \
@@ -85,7 +91,11 @@
 	  | grep -v 'debug_loc' \
 	  | grep -v 'Lpubtypes' \
 	  | grep -v 'Lpubnames' \
-	  | grep -v 'Linfo_' > $@
+	  | grep -v 'Linfo_' \
+	  | grep -v 'Lfunc_begin' \
+	  | grep -v 'Lfunc_end' \
+	  | grep -v 'Ldebug_frame_begin' \
+	  | grep -v 'Ldebug_frame_end' > $@
 
 Output/%.diff: Output/%.first.s Output/%.second.s
 	@-if diff $^ > $@; then \





More information about the llvm-commits mailing list