PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / divconst-3.c
blobddd687cbcfde9294ac697bb484f56a9da071d6e6
1 long long
2 f (long long x)
4 return x / 10000000000LL;
7 main ()
9 if (f (10000000000LL) != 1 || f (100000000000LL) != 10)
10 abort ();
11 exit (0);