ignore test if targets 'long long' is less than 64 bits
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 May 2000 18:38:02 +0000 (18:38 +0000)
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 May 2000 18:38:02 +0000 (18:38 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34138 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/gcc.c-torture/execute/20000523-1.c

index 91ed786..d915fcb 100644 (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;