]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
20000523-1.c: Fix bytes/bits thinko.
authorPaul Brook <paul@codesourcery.com>
Mon, 2 May 2005 13:36:53 +0000 (13:36 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Mon, 2 May 2005 13:36:53 +0000 (13:36 +0000)
2005-05-02  Paul Brook  <paul@codesourcery.com>

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

From-SVN: r99095

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

index a2fcc8b7a65a6eb12c5c1b99151ca251a9cd7324..30dab9b5e83a0dc9be9fa935983c022d4adfe939 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-02  Paul Brook  <paul@codesourcery.com>
+
+       * gcc.c-torture/execute/20000523-1.c: Fix bytes/bits thinko.
+
 2005-05-02  Michael Matz  <matz@suse.de>
 
        PR c++/19542
index d915fcbfb7816c31f854d7878b01a537556763ea..6382ba4a1bfe6029dcb3831e094eaf45c40eacff 100644 (file)
@@ -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;