* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-store-ccp-4.c
blob3e16347daf3d392ea6d0e86bc6fc56256efbbc1d
1 /* { dg-do compile } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-skip-if "" { *-*-darwin* *-*-mingw* } } */
4 /* { dg-options "-O2 -fno-common -fpic -fdump-tree-optimized" } */
6 const int conststaticvariable;
8 int f(void)
10 return conststaticvariable;
13 /* There should be a reference to conststaticvariable since it may
14 may be overriden at run time. */
15 /* { dg-final { scan-tree-dump-times "conststaticvariable" 1 "optimized"} } */