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:
parent
cbcc22fa31
commit
4e74424074
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue