From: Nick Clifton Date: Wed, 24 May 2000 18:38:02 +0000 (+0000) Subject: ignore test if targets 'long long' is less than 64 bits X-Git-Tag: prereleases/libstdc++-2.92~6218 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aa134ba753a5755f5734525d9e5fba3a444accc7;p=thirdparty%2Fgcc.git ignore test if targets 'long long' is less than 64 bits From-SVN: r34138 --- diff --git a/gcc/testsuite/gcc.c-torture/execute/20000523-1.c b/gcc/testsuite/gcc.c-torture/execute/20000523-1.c index 91ed7860fd72..d915fcbfb781 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20000523-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20000523-1.c @@ -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;