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

Jim Grosbach grosbach at apple.com
Tue Jun 8 12:55:35 PDT 2010


Author: grosbach
Date: Tue Jun  8 14:55:34 2010
New Revision: 105632

URL: http://llvm.org/viewvc/llvm-project?rev=105632&view=rev
Log:
readability cleanup. no functional change.

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=105632&r1=105631&r2=105632&view=diff
==============================================================================
--- test-suite/trunk/TEST.optllcdbg.Makefile (original)
+++ test-suite/trunk/TEST.optllcdbg.Makefile Tue Jun  8 14:55:34 2010
@@ -33,7 +33,27 @@
 	$(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' | grep -v 'Lset' | grep -v 'debug_loc' | grep -v 'Lpubtypes' | grep -v 'Lpubnames' | grep -v 'Linfo_' > $@
+	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' \
+	  | grep -v 'Lset' \
+	  | grep -v 'debug_loc' \
+	  | grep -v 'Lpubtypes' \
+	  | grep -v 'Lpubnames' \
+	  | grep -v 'Linfo_' > $@
 
 Output/%.t2a.bc: Output/%.linked.rbc Output/.dir $(LOPT)
 	$(LOPT) -strip-nondebug $< -f -o $@
@@ -45,7 +65,27 @@
 	$(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' | grep -v 'Lset' | grep -v 'debug_loc' | grep -v 'Lpubtypes' | grep -v 'Lpubnames' | grep -v 'Linfo_' > $@
+	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' \
+	  | grep -v 'Lset' \
+	  | grep -v 'debug_loc' \
+	  | grep -v 'Lpubtypes' \
+	  | grep -v 'Lpubnames' \
+	  | grep -v 'Linfo_' > $@
 
 Output/%.diff: Output/%.first.s Output/%.second.s
 	@-if diff $^ > $@; then \





More information about the llvm-commits mailing list