* gcc.c-torture/execute/wchar_t-1.c: Convert to utf-8.

From-SVN: r74491
This commit is contained in:
Richard Henderson 2003-12-10 01:34:10 -08:00 committed by Richard Henderson
parent 5ca18844a8
commit 553355fec7
2 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,7 @@
2003-12-10 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/wchar_t-1.c: Convert to utf-8.
* gcc.dg/intermod-1.c: Adjust assembler scan pattern for alpha.
2003-12-08 Matt Austern <austern@apple.com>

View File

@ -1,6 +1,6 @@
typedef __WCHAR_TYPE__ wchar_t;
wchar_t x[] = L"Ä";
wchar_t y = L'Ä';
wchar_t x[] = L"Ä";
wchar_t y = L'Ä';
extern void abort (void);
extern void exit (int);
@ -8,9 +8,9 @@ int main (void)
{
if (sizeof (x) / sizeof (wchar_t) != 2)
abort ();
if (x[0] != L'Ä' || x[1] != L'\0')
if (x[0] != L'Ä' || x[1] != L'\0')
abort ();
if (y != L'Ä')
if (y != L'Ä')
abort ();
exit (0);
}