re PR tree-optimization/37997 (PHI translation does not simplify to non-constants)

2012-01-19  Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/37997
	* gcc.dg/tree-ssa/ssa-pre-28.c: New testcase.

From-SVN: r183297
This commit is contained in:
Richard Guenther 2012-01-19 09:37:58 +00:00 committed by Richard Biener
parent f90aa71426
commit 7b4eaf7e35
2 changed files with 26 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-01-19 Richard Guenther <rguenther@suse.de>
PR tree-optimization/37997
* gcc.dg/tree-ssa/ssa-pre-28.c: New testcase.
2012-01-19 Andrey Belevantsev <abel@ispras.ru>
PR rtl-optimization/51505

View File

@ -0,0 +1,21 @@
/* PR37997 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-pre-details" } */
int foo (int i, int b, int result)
{
int mask;
if (b)
mask = -1;
else
mask = 0;
result = i + 1;
result = result & mask;
return result;
}
/* We should insert i + 1 into the if (b) path as well as the simplified
i + 1 & -1 expression. And do replacement with two PHI temps. */
/* { dg-final { scan-tree-dump-times "with prephitmp" 2 "pre" } } */
/* { dg-final { cleanup-tree-dump "pre" } } */