rt_gccstream/gcc/testsuite/gcc.dg/graphite/id-12.c

11 lines
139 B
C

void
foo (unsigned short x[])
{
int i;
unsigned short *p = &x[2];
if (*p)
x += 2;
for (i = 2; i < 9; i++, ++x)
*x >>= 8;
}