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

13 lines
149 B
C

long long
f (long long x)
{
return x / 100000000LL;
}
main ()
{
if (f (100000000LL) != 1 || f (1000000000LL) != 10)
abort ();
exit (0);
}