diff options
author | Paul Brook <paul@codesourcery.com> | 2005-05-02 13:36:53 +0000 |
---|---|---|
committer | Paul Brook <pbrook@gcc.gnu.org> | 2005-05-02 13:36:53 +0000 |
commit | 1e872f31fbc1a24624417b33a2c9bcda1664fcb1 (patch) | |
tree | 86e2fba952ae7733b94839fd07f70c279a539add | |
parent | c9eb94f4056b50419b1f233d128eaa21c70cdca2 (diff) | |
download | gcc-1e872f31fbc1a24624417b33a2c9bcda1664fcb1.zip gcc-1e872f31fbc1a24624417b33a2c9bcda1664fcb1.tar.gz gcc-1e872f31fbc1a24624417b33a2c9bcda1664fcb1.tar.bz2 |
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
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/execute/20000523-1.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a2fcc8b..30dab9b 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/gcc.c-torture/execute/20000523-1.c b/gcc/testsuite/gcc.c-torture/execute/20000523-1.c index d915fcb..6382ba4 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; |