mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 19:51:51 +08:00
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:
parent
f90aa71426
commit
7b4eaf7e35
@ -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
|
||||
|
21
gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-28.c
Normal file
21
gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-28.c
Normal 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" } } */
|
Loading…
x
Reference in New Issue
Block a user