2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 920608-1.c
blobcae1978e6c01aa85be5f92107f683e8344addfda
1 foo (p)
2 int *p;
4 int x;
5 int a;
7 a = p[0];
8 x = a + 5;
9 a = -1;
10 p[0] = x - 5;
11 return a;
14 bar (p)
16 short x;
17 int a;
19 x = ((short *) p)[1];
20 #if INHIBIT_COMBINE
21 ((short *) p)[0] = x;
22 #endif
24 return (x < 45);