re PR tree-optimization/55079 (false positive -Warray-bounds (also seen at -O3 bootstrap))

PR tree-optimization/55079
* gcc.dg/tree-ssa/ssa-pre-1.c: Adjust.

From-SVN: r194437
This commit is contained in:
Andreas Schwab 2012-12-12 09:32:40 +00:00
parent cbcc22fa31
commit 4e74424074

View file

@ -9,7 +9,7 @@ int foo(int argc, char **argv)
b = argc + 1;
c = argc + 2;
a = b + c;
if (argc * 2)
if (argc > 2)
{
c = argc + 3;
}