Commit 76744c17 by Richard Guenther Committed by Richard Biener

re PR tree-optimization/37541 (VRP fails to optimize single-bit ranges)

2012-06-29  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/37541
	* gcc.dg/tree-ssa/pr37508.c: Adjust and un-XFAIL.

From-SVN: r189075
parent 67a0732f
2012-06-29 Richard Guenther <rguenther@suse.de> 2012-06-29 Richard Guenther <rguenther@suse.de>
PR tree-optimization/37541
* gcc.dg/tree-ssa/pr37508.c: Adjust and un-XFAIL.
2012-06-29 Richard Guenther <rguenther@suse.de>
PR tree-optimization/52589 PR tree-optimization/52589
* gcc.dg/tree-ssa/vrp70.c: New testcase. * gcc.dg/tree-ssa/vrp70.c: New testcase.
......
...@@ -30,7 +30,7 @@ int test3 (struct foo1 *x) ...@@ -30,7 +30,7 @@ int test3 (struct foo1 *x)
{ {
if (x->i == 0) if (x->i == 0)
return 1; return 1;
else if (x->i == 1) else if (x->i == 1) /* This test is already folded to false by fold. */
return 1; return 1;
return 0; return 0;
} }
...@@ -44,5 +44,5 @@ int test4 (struct foo2 *x) ...@@ -44,5 +44,5 @@ int test4 (struct foo2 *x)
return 0; return 0;
} }
/* { dg-final { scan-tree-dump-times "Folding" 4 "vrp1" { xfail *-*-* } } } */ /* { dg-final { scan-tree-dump-times "Folding" 3 "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */ /* { dg-final { cleanup-tree-dump "vrp1" } } */
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