8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/931208-1.c

15 lines
137 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
f ()
{
unsigned long x, y = 1;
x = ((y * 8192) - 216) / 16;
return x;
}
main ()
{
if (f () != 498)
abort ();
exit (0);
}