Commit 4e744240 by Andreas Schwab

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
parent cbcc22fa
...@@ -9,7 +9,7 @@ int foo(int argc, char **argv) ...@@ -9,7 +9,7 @@ int foo(int argc, char **argv)
b = argc + 1; b = argc + 1;
c = argc + 2; c = argc + 2;
a = b + c; a = b + c;
if (argc * 2) if (argc > 2)
{ {
c = argc + 3; c = argc + 3;
} }
......
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