From: Richard Biener Date: Wed, 11 Jan 2023 07:02:52 +0000 (+0100) Subject: tree-optimization/106293 - fix testcase X-Git-Tag: basepoints/gcc-14~2108 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d96a7fc27f3561f984e50feb316d3e472ed9d14;p=thirdparty%2Fgcc.git tree-optimization/106293 - fix testcase The following removes a problematic initializer which causes excess diagnostics with -m32 and isn't actually required. PR tree-optimization/106293 * gcc.dg/tree-ssa/ssa-dse-46.c: Remove long initializer. --- diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-46.c b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-46.c index 68b36433ffcf..c98038a4d2d5 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-46.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dse-46.c @@ -2,7 +2,7 @@ /* { dg-options "-O2 -fdump-tree-dse1" } */ int a; -static long b = 4073709551612, d; +static long b, d; short c; void foo(); char e(int **f) {