diff options
author | kvanhees <kvanhees@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-18 22:37:42 +0000 |
---|---|---|
committer | kvanhees <kvanhees@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-18 22:37:42 +0000 |
commit | 4464cca02cd32601a5ec21f298fefcf776b93806 (patch) | |
tree | a9ca7fba352e14d89adecf8497a05ee1bc1a46d4 /gcc/testsuite/gcc.dg/utf-array-short-wchar.c | |
parent | 0c6ce2fb51ff5c75efdf6bb0377068e126d89af7 (diff) | |
download | gcc-4464cca02cd32601a5ec21f298fefcf776b93806.tar.gz |
2008-07-18 Kris Van Hees <kris.van.hees@oracle.com>
* g++.dg/ext/utf-array.C: Fix broken merge/checkin.
* g++.dg/ext/utf-array-short-wchar.C: Idem
* gcc.dg/utf-array.c: Idem
* gcc.dg/utf-array-short-wchar.c: Idem
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@137970 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/utf-array-short-wchar.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/utf-array-short-wchar.c | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/gcc/testsuite/gcc.dg/utf-array-short-wchar.c b/gcc/testsuite/gcc.dg/utf-array-short-wchar.c index 3f34caa19e6..7d8c319d99a 100644 --- a/gcc/testsuite/gcc.dg/utf-array-short-wchar.c +++ b/gcc/testsuite/gcc.dg/utf-array-short-wchar.c @@ -39,44 +39,3 @@ const wchar_t sw_0[] = "ab"; /* { dg-error "from non-wide" } */ const wchar_t sw_1[] = u"ab"; const wchar_t sw_2[] = U"ab"; /* { dg-error "from incompatible" } */ const wchar_t sw_3[] = L"ab"; -/* Contributed by Kris Van Hees <kris.van.hees@oracle.com> */ -/* Expected errors for char16_t/char32_t string literals. */ -/* { dg-do compile } */ -/* { dg-options "-std=gnu99 -fshort-wchar" } */ - -#include <wchar.h> - -typedef short unsigned int char16_t; -typedef unsigned int char32_t; - -const char s_0[] = "ab"; -const char s_1[] = u"ab"; /* { dg-error "from wide string" } */ -const char s_2[] = U"ab"; /* { dg-error "from wide string" } */ -const char s_3[] = L"ab"; /* { dg-error "from wide string" } */ - -const char16_t s16_0[] = "ab"; /* { dg-error "from non-wide" } */ -const char16_t s16_1[] = u"ab"; -const char16_t s16_2[] = U"ab"; /* { dg-error "from incompatible" } */ -const char16_t s16_3[] = L"ab"; - -const char16_t s16_4[0] = u"ab"; /* { dg-warning "chars is too long" } */ -const char16_t s16_5[1] = u"ab"; /* { dg-warning "chars is too long" } */ -const char16_t s16_6[2] = u"ab"; -const char16_t s16_7[3] = u"ab"; -const char16_t s16_8[4] = u"ab"; - -const char32_t s32_0[] = "ab"; /* { dg-error "from non-wide" } */ -const char32_t s32_1[] = u"ab"; /* { dg-error "from incompatible" } */ -const char32_t s32_2[] = U"ab"; -const char32_t s32_3[] = L"ab"; /* { dg-error "from incompatible" } */ - -const char16_t s32_4[0] = u"ab"; /* { dg-warning "chars is too long" } */ -const char16_t s32_5[1] = u"ab"; /* { dg-warning "chars is too long" } */ -const char16_t s32_6[2] = u"ab"; -const char16_t s32_7[3] = u"ab"; -const char16_t s32_8[4] = u"ab"; - -const wchar_t sw_0[] = "ab"; /* { dg-error "from non-wide" } */ -const wchar_t sw_1[] = u"ab"; -const wchar_t sw_2[] = U"ab"; /* { dg-error "from incompatible" } */ -const wchar_t sw_3[] = L"ab"; |