From: Paul Brook Date: Mon, 2 May 2005 13:36:53 +0000 (+0000) Subject: 20000523-1.c: Fix bytes/bits thinko. X-Git-Tag: misc/cutover-cvs2svn~3550 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1e872f31fbc1a24624417b33a2c9bcda1664fcb1;p=thirdparty%2Fgcc.git 20000523-1.c: Fix bytes/bits thinko. 2005-05-02 Paul Brook * gcc.c-torture/execute/20000523-1.c: Fix bytes/bits thinko. From-SVN: r99095 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a2fcc8b7a65a..30dab9b5e83a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-05-02 Paul Brook + + * gcc.c-torture/execute/20000523-1.c: Fix bytes/bits thinko. + 2005-05-02 Michael Matz PR c++/19542 diff --git a/gcc/testsuite/gcc.c-torture/execute/20000523-1.c b/gcc/testsuite/gcc.c-torture/execute/20000523-1.c index d915fcbfb781..6382ba4a1bfe 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20000523-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20000523-1.c @@ -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;