PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr79286.c
blobe6d0e935a87b9f7b35772eb081049682812d6643
1 int a = 0, c = 0;
2 static int d[][8] = {};
4 int main ()
6 int e;
7 for (int b = 0; b < 4; b++)
9 __builtin_printf ("%d\n", b, e);
10 while (a && c++)
11 e = d[300000000000000000][0];
14 return 0;