Commit 55ccf4f9 by Jeff Law Committed by Jeff Law

[PATCH][PR tree-optimization/68844] Fix testcase expected output

	PR tree-optimization/68844
	* gcc.dg/tree-ssa/ssa-dom-thread-4.c: Update expected output.

2015-12-11  Jan Beulich  <jbeulich@suse.com>

From-SVN: r231577
parent 1a2d7586
2015-12-11 Jeff Law <law@redhat.com>
PR tree-optimization/68844
* gcc.dg/tree-ssa/ssa-dom-thread-4.c: Update expected output.
2015-12-11 Nathan Sidwell <nathan@acm.org> 2015-12-11 Nathan Sidwell <nathan@acm.org>
* gcc.dg/pr59605-1.c: Reduce iterations for nvptx. * gcc.dg/pr59605-1.c: Reduce iterations for nvptx.
......
...@@ -74,6 +74,10 @@ bitmap_ior_and_compl (bitmap dst, const_bitmap a, const_bitmap b, ...@@ -74,6 +74,10 @@ bitmap_ior_and_compl (bitmap dst, const_bitmap a, const_bitmap b,
2x "kill_elt->indx >= b_elt->indx" in the first "while" loop 2x "kill_elt->indx >= b_elt->indx" in the first "while" loop
-> "kill_elt->indx == b_elt->indx" in the second condition, -> "kill_elt->indx == b_elt->indx" in the second condition,
skipping the known-true "b_elt && kill_elt" in the second skipping the known-true "b_elt && kill_elt" in the second
condition. */ condition.
/* { dg-final { scan-tree-dump-times "Threaded" 4 "dom2" { target logical_op_short_circuit } } } */
However, 3 of those 4 opportunities are ultimately eliminated by
DOM optimizing away conditionals. So there's only one jump threading
opportunity left. */
/* { dg-final { scan-tree-dump-times "Threaded" 1 "dom2" { target logical_op_short_circuit } } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment