20000523-1.c: Fix bytes/bits thinko.

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

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

From-SVN: r99095
This commit is contained in:
Paul Brook 2005-05-02 13:36:53 +00:00 committed by Paul Brook
parent c9eb94f405
commit 1e872f31fb
2 changed files with 5 additions and 1 deletions

View 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

View 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;