From: Andreas Schwab Date: Wed, 12 Dec 2012 09:32:40 +0000 (+0000) Subject: re PR tree-optimization/55079 (false positive -Warray-bounds (also seen at -O3 bootst... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4e74424074a80791ef6ba223d56b1af3f9ac4439;p=gcc.git 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 --- diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-1.c b/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-1.c index 3dd3b526333..3bc0f5e3e6e 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-1.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-1.c @@ -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; }