* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr67120.c
blobd22b314bd3fe83d726a414b8dd743c0ef33e1f6b
1 /* { dg-do run } */
3 volatile int *volatile *a;
4 static volatile int *volatile **b = &a;
6 int
7 main ()
9 volatile int *volatile c;
10 *b = &c;
12 if (a != &c)
13 __builtin_abort ();
15 return 0;