Commit 1e872f31 by Paul Brook Committed by Paul Brook

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
parent c9eb94f4
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment