mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 08:40:33 +08:00
* gcc.dg/strlenopt-58.c: Handle targets with 2 byte wchar_t.
From-SVN: r266804
This commit is contained in:
parent
037586ddda
commit
31475afaca
@ -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.
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user