PR tree-optimization/81384 - built-in form of strnlen missing
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930406-1.c
blobf240d1b09ab7190171b999b47f0d27bea6e869e8
1 /* { dg-add-options stack_size } */
3 f()
5 int x = 1;
6 #if defined(STACK_SIZE)
7 char big[STACK_SIZE/2];
8 #else
9 char big[0x1000];
10 #endif
13 __label__ mylabel;
14 mylabel:
15 x++;
16 if (x != 3)
17 goto mylabel;
18 });
19 exit(0);
22 main()
24 f();