tcc-65816/test/tests/941025-1.c
2017-06-09 13:52:12 +02:00

13 lines
138 B
C

long f (x, y)
long x,y;
{
return (x > 1) ? y : (y & 1);
}
main ()
{
if (f (2L, 0xdcdeL) != 0xdcdeL)
abort ();
exit (0);
}