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

Chris Lattner clattner at apple.com
Tue Mar 23 14:41:28 PDT 2010


On Mar 23, 2010, at 2:36 PM, Bill Wendling wrote:

> Author: void
> Date: Tue Mar 23 16:36:36 2010
> New Revision: 99329
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=99329&view=rev
> Log:
> Remove "crit_edge*" comments. These could change, but they don't effect code
> generation.

Are you checking the -fverbose-asm output or something or do these comments come out even when verbose-asm is disabled?  If they're coming out with verbose-asm off, we should fix that.

-Chris

> 
> 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=99329&r1=99328&r2=99329&view=diff
> ==============================================================================
> --- test-suite/trunk/TEST.m2regllcdbg.Makefile (original)
> +++ test-suite/trunk/TEST.m2regllcdbg.Makefile Tue Mar 23 16:36:36 2010
> @@ -17,7 +17,7 @@
> TESTNAME = $*
> TARGET_FLAGS = -g -O0
> LLC_DEBUG_FLAGS = -O0 -regalloc=local
> -.PRECIOUS: Output/%.first.s Output/%.second.s Output/%.t2c.s Output/%.t1c.s
> +.PRECIOUS: Output/%.first.s Output/%.second.s Output/%.t2c.s Output/%.t1c.s Output/%.t2b.bc Output/%.t1b.bc
> 
> $(PROGRAMS_TO_TEST:%=test.$(TEST).%): \
> test.$(TEST).%: Output/%.diff
> @@ -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 '\.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 '^$$' | sed -e 's,## %._crit_edge[0-9]*,##,' > $@
> 
> 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 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 '^$$' | sed -e 's,## %._crit_edge[0-9]*,##,' > $@
> 
> Output/%.diff: Output/%.first.s Output/%.second.s
> 	@-if diff $^ > $@; then \
> 
> 
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits





More information about the llvm-commits mailing list