Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ipa-reference-1.c
blob58f5db965868ed1e61e6ad934c7a789f4c3622a2
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 static int conststaticvariable;
6 int f(void)
8 return conststaticvariable;
11 /* There should be no reference to conststaticvariable as we should have
12 inlined the 0 as IPA reference should have marked the variable as a const
13 as it is not set in the IR. */
14 /* { dg-final { scan-tree-dump-times "conststaticvariable" 0 "optimized"} } */