PR testsuite/52641
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-store-ccp-2.c
blob29a2dd5ccccc0b88bbdc2ba1ace595e7084bbd58
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" { xfail { *-*-mingw* *-*-cygwin* } } } } */
14 /* { dg-final { cleanup-tree-dump "optimized" } } */