* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr83069.c
blobaddb2df765b7d0049a23d212bcfb844c88cd9dc4
1 #define MAX 98
3 void foo (unsigned long *res, unsigned long in)
5 for (unsigned long a = 0; a < MAX; a++)
6 for (unsigned long b = 0; b < MAX; b++)
7 for (unsigned long c = 0; c < MAX; c++)
8 for (unsigned long d = 0; d < MAX; d++)
9 for (unsigned long e = 0; e < MAX; e++)
10 for (unsigned long f = 0; f < MAX; f++)
11 for (unsigned long g = 0; g < MAX; g++)
12 *res += a * in;