FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980424-1.c
blob514e91773a5d2fd9af8198cbf2c6690d12186567
1 int i, a[99];
3 void f (int one)
5 if (one != 1)
6 abort ();
9 void
10 g ()
12 f (a[i & 0x3f]);
15 int
16 main ()
18 a[0] = 1;
19 i = 0x40;
20 g ();
21 exit (0);