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

15 lines
145 B
C

int blah;
foo()
{
int i;
for (i=0 ; i< 7 ; i++)
{
if (i == 7 - 1)
blah = 0xfcc;
else
blah = 0xfee;
}
return blah;
}