Commit aa134ba7 by Nick Clifton

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

From-SVN: r34138
parent a4e99046
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment