ignore test if targets 'long long' is less than 64 bits
From-SVN: r34138
This commit is contained in:
parent
a4e990461d
commit
aa134ba753
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user