tree-optimization/111233 - loop splitting miscompile
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / 20140610-1.c
blob67cf8cd8de86c1800d2a4e89e5452c594bcbbf2d
1 /* { dg-do run } */
2 /* { dg-additional-sources "20140610-2.c" } */
4 extern int a;
5 extern int *p;
7 void test (void);
9 int main ()
11 *p = 0;
12 a = 1;
13 test ();
14 return 0;