vrp92.c: New testcase.

2014-05-27  Richard Biener  <rguenther@suse.de>

	* gcc.dg/tree-ssa/vrp92.c: New testcase.

From-SVN: r210974
This commit is contained in:
Richard Biener 2014-05-27 15:00:29 +00:00 committed by Richard Biener
parent 7ea7f668fc
commit 4dd3be8165
2 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-05-27 Richard Biener <rguenther@suse.de>
* gcc.dg/tree-ssa/vrp92.c: New testcase.
2014-05-27 Marek Polacek <polacek@redhat.com>
PR testsuite/61319

View File

@ -0,0 +1,23 @@
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1-details" } */
void bar (void);
int foo (int i, int j)
{
int res = 1;
if (i < j)
{
/* We should be able to simplify the following conditional
during propagation. */
if (i > j)
res = 0;
}
/* And compute res as having a value-range of [1,1]. */
if (res)
return i;
return j;
}
/* { dg-final { scan-tree-dump "res_.: \\\[1, 1\\\]" "vrp1" } } */
/* { dg-final { scan-tree-dump-not "Threaded" "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */