diff options
author | Neil Booth <neil@gcc.gnu.org> | 2001-01-11 08:11:29 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-01-11 08:11:29 +0000 |
commit | a5624f140d668e30d4e7cf418fb0744e2538b8fb (patch) | |
tree | 4919e8503f9f76e7c675366458a2a56e7bbe28df | |
parent | f7d7b65139fe65d825e0cc25c4741b6d01753371 (diff) | |
download | gcc-a5624f140d668e30d4e7cf418fb0744e2538b8fb.zip gcc-a5624f140d668e30d4e7cf418fb0744e2538b8fb.tar.gz gcc-a5624f140d668e30d4e7cf418fb0744e2538b8fb.tar.bz2 |
* gcc.dg/cpp/if-2.c: Fix bogus update.
From-SVN: r38897
-rw-r--r-- | gcc/testsuite/gcc.dg/cpp/if-2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/cpp/if-2.c b/gcc/testsuite/gcc.dg/cpp/if-2.c index 4b9d288..9a00960 100644 --- a/gcc/testsuite/gcc.dg/cpp/if-2.c +++ b/gcc/testsuite/gcc.dg/cpp/if-2.c @@ -14,7 +14,7 @@ #endif #if L'\x1234' != 0x1234 -#error 0xfeed /* { dg-bogus "error" "wide charconst recognition 2" } */ +#error 0x1234 /* { dg-bogus "error" "wide charconst recognition 3" } */ #endif #if 'abcd' /* { dg-warning "multi-character character constant" "multi-character charconst" } */ |