* gcc.dg/strlenopt-58.c: Handle targets with 2 byte wchar_t.

From-SVN: r266804
This commit is contained in:
Jeff Law 2018-12-04 16:23:03 -07:00 committed by Jeff Law
parent 037586ddda
commit 31475afaca
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2018-12-04 Jeff Law <law@redhat.com>
* gcc.dg/strlenopt-58.c: Handle targets with 2 byte wchar_t.
2018-12-04 Martin Sebor <msebor@redhat.com>
* gcc.target/i386/attr-aligned-2.c: New test.

View File

@ -34,8 +34,8 @@ extern void* memchr (const void*, int, size_t);
static const wchar_t wc = L'1';
static const wchar_t ws1[] = L"1";
static const wchar_t wsx[] = L"\x12345678";
static const wchar_t ws4[] = L"\x00123456\x12005678\x12340078\x12345600";
static const wchar_t wsx[] = L"\x12345678"; /* { dg-warning "hex escape" "" { target { ! 4byte_wchar_t } } } */
static const wchar_t ws4[] = L"\x00123456\x12005678\x12340078\x12345600"; /* { dg-warning "hex escape" "" { target { ! 4byte_wchar_t } } } */
void test_wide (void)
{
@ -47,7 +47,7 @@ void test_wide (void)
ELIM (memchr (L"" + 1, 0, 0) == 0);
ELIM (memchr (&wc + 1, 0, 0) == 0);
ELIM (memchr (L"\x12345678", 0, sizeof (wchar_t)) == 0);
ELIM (memchr (L"\x12345678", 0, sizeof (wchar_t)) == 0); /* { dg-warning "hex escape" "" { target { ! 4byte_wchar_t } } } */
const size_t nb = sizeof ws4;
const size_t nwb = sizeof (wchar_t);