aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20090303-1.c
blob: 18a3d91fd1c5ede98fd25e9ccf10c655b2034f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* The array offset became 0x1ffffffffffffffe via a conversion from
   signed to unsigned HOST_WIDE_INT, causing an ICE compiling for
   Thumb.  */

int r (unsigned short *);
void s (unsigned short *, unsigned short *);

int
f (int x)
{
  unsigned short a[1], c[1];

  if (r (a))
    return x;

  if (c[-1])
    s (a, c);

  return 0;
}