Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-store-ccp-2.c
blobbe37a21d41578242105aebaaf9959d3f02b19b72
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
4 const int conststaticvariable;
6 int f(void)
8 return conststaticvariable;
11 /* There should be a reference to conststaticvariable since it may
12 may be overriden at link time. */
13 /* { dg-final { scan-tree-dump-times "conststaticvariable" 1 "optimized"} } */
14 /* { dg-final { cleanup-tree-dump "optimized" } } */