* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20090303-1.c
blob18a3d91fd1c5ede98fd25e9ccf10c655b2034f56
1 /* The array offset became 0x1ffffffffffffffe via a conversion from
2 signed to unsigned HOST_WIDE_INT, causing an ICE compiling for
3 Thumb. */
5 int r (unsigned short *);
6 void s (unsigned short *, unsigned short *);
8 int
9 f (int x)
11 unsigned short a[1], c[1];
13 if (r (a))
14 return x;
16 if (c[-1])
17 s (a, c);
19 return 0;