Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-store-ccp-1.c
blobaaa3d13cad4e8e4879b888ed0371269edaf7bc84
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 static const 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. */
13 /* { dg-final { scan-tree-dump-times "conststaticvariable" 0 "optimized"} } */
14 /* { dg-final { cleanup-tree-dump "optimized" } } */