[committed] Fix previously latent bug in reorg affecting cris port
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 941025-1.c
blob013f113c2f2be93515ea29dbca344eba6ca4952a
1 void abort (void);
2 void exit (int);
4 long f (x, y)
5 long x,y;
7 return (x > 1) ? y : (y & 1);
10 int
11 main (void)
13 if (f (2L, 0xdecadeL) != 0xdecadeL)
14 abort ();
15 exit (0);