ignore test if targets 'long long' is less than 64 bits

From-SVN: r34138
This commit is contained in:
Nick Clifton 2000-05-24 18:38:02 +00:00
parent a4e990461d
commit aa134ba753

View File

@ -4,6 +4,9 @@ main (void)
long long x;
int n;
if (sizeof (long long) < 64)
exit (0);
n = 9;
x = (((long long) n) << 55) / 0xff;