Thinko in 20000523-1.c

Paul Brook paul@codesourcery.com
Mon May 2 13:36:00 GMT 2005


gcc.c-torture/execute/20000523-1.c tests sizeof(long long) < 64, where it 
clearly means < 8.

Applied as obvious.

Paul

2005-05-02  Paul Brook  <paul@codesourcery.com>

	* gcc.c-torture/execute/20000523-1.c: Fix bytes/bits thinko.

Index: gcc.c-torture/execute/20000523-1.c
===================================================================
RCS 
file: /var/cvsroot/gcc-cvs/gcc/gcc/testsuite/gcc.c-torture/execute/20000523-1.c,v
retrieving revision 1.2
diff -u -p -r1.2 20000523-1.c
--- gcc.c-torture/execute/20000523-1.c	24 May 2000 18:38:02 -0000	1.2
+++ gcc.c-torture/execute/20000523-1.c	2 May 2005 13:30:16 -0000
@@ -4,7 +4,7 @@ main (void)
   long long   x;
   int         n;
 
-  if (sizeof (long long) < 64)
+  if (sizeof (long long) < 8)
     exit (0);
   
   n = 9;



More information about the Gcc-patches mailing list