utf-array-short-wchar.c, [...]: Use __CHAR16_TYPE__ and __CHAR32_TYPE__ typedefs.

* gcc.dg/utf-array-short-wchar.c, gcc.dg/utf-cvt.c,
	gcc.dg/utf-inc-init.c, gcc.dg/utf16-1.c, gcc.dg/utf16-2.c,
	gcc.dg/utf16-3.c, gcc.dg/utf16-4.c, gcc.dg/utf32-1.c,
	gcc.dg/utf32-2.c, gcc.dg/utf32-3.c, gcc.dg/utf32-4.c: Use
	__CHAR16_TYPE__ and __CHAR32_TYPE__ typedefs.

From-SVN: r141656
This commit is contained in:
Joseph Myers 2008-11-06 22:16:38 +00:00 committed by Joseph Myers
parent 0a83b1b01d
commit ad914b4ea8
12 changed files with 22 additions and 14 deletions

View File

@ -1,3 +1,11 @@
2008-11-06 Joseph Myers <joseph@codesourcery.com>
* gcc.dg/utf-array-short-wchar.c, gcc.dg/utf-cvt.c,
gcc.dg/utf-inc-init.c, gcc.dg/utf16-1.c, gcc.dg/utf16-2.c,
gcc.dg/utf16-3.c, gcc.dg/utf16-4.c, gcc.dg/utf32-1.c,
gcc.dg/utf32-2.c, gcc.dg/utf32-3.c, gcc.dg/utf32-4.c: Use
__CHAR16_TYPE__ and __CHAR32_TYPE__ typedefs.
2008-11-06 Richard Guenther <rguenther@suse.de>
* gcc.dg/torture/pr37969.c: New testcase.

View File

@ -5,8 +5,8 @@
#include <wchar.h>
typedef short unsigned int char16_t;
typedef unsigned int char32_t;
typedef __CHAR16_TYPE__ char16_t;
typedef __CHAR32_TYPE__ char32_t;
const char s_0[] = "ab";
const char s_1[] = u"ab"; /* { dg-error "from wide string" } */

View File

@ -4,8 +4,8 @@
/* { dg-excess-errors "short and int are 16bit" { target { "avr-*-*" } } } */
/* { dg-options "-std=gnu99 -Wall -Wconversion -Wsign-conversion" } */
typedef short unsigned int char16_t;
typedef unsigned int char32_t;
typedef __CHAR16_TYPE__ char16_t;
typedef __CHAR32_TYPE__ char32_t;
extern void f_c (char);
extern void fsc (signed char);

View File

@ -4,8 +4,8 @@
/* { dg-options "-std=gnu99" } */
typedef __SIZE_TYPE__ size_t;
typedef short unsigned int char16_t;
typedef unsigned int char32_t;
typedef __CHAR16_TYPE__ char16_t;
typedef __CHAR32_TYPE__ char32_t;
extern int memcmp (const void *, const void *, size_t);
extern void abort (void);

View File

@ -3,7 +3,7 @@
/* { dg-do run } */
/* { dg-options "-std=gnu99 -Wall -Werror" } */
typedef short unsigned int char16_t;
typedef __CHAR16_TYPE__ char16_t;
extern void abort (void);

View File

@ -3,7 +3,7 @@
/* { dg-do run } */
/* { dg-options "-std=gnu99 -Wall -Werror" } */
typedef short unsigned int char16_t;
typedef __CHAR16_TYPE__ char16_t;
extern void abort (void);

View File

@ -3,7 +3,7 @@
/* { dg-do run } */
/* { dg-options "-std=gnu99 -Wall -Werror" } */
typedef short unsigned int char16_t;
typedef __CHAR16_TYPE__ char16_t;
extern void abort (void);

View File

@ -3,7 +3,7 @@
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
typedef short unsigned int char16_t;
typedef __CHAR16_TYPE__ char16_t;
char16_t c0 = u''; /* { dg-error "empty character" } */
char16_t c1 = u'ab'; /* { dg-warning "constant too long" } */

View File

@ -4,7 +4,7 @@
/* { dg-xfail-run-if "PR36470" { "avr-*-*" } { "*" } { "" } } */
/* { dg-options "-std=gnu99 -Wall -Werror" } */
typedef unsigned int char32_t;
typedef __CHAR32_TYPE__ char32_t;
extern void abort (void);

View File

@ -4,7 +4,7 @@
/* { dg-xfail-run-if "PR36470" { "avr-*-*" } { "*" } { "" } } */
/* { dg-options "-std=gnu99 -Wall -Werror" } */
typedef unsigned int char32_t;
typedef __CHAR32_TYPE__ char32_t;
extern void abort (void);

View File

@ -4,7 +4,7 @@
/* { dg-xfail-run-if "PR36470" { "avr-*-*" } { "*" } { "" } } */
/* { dg-options "-std=gnu99 -Wall -Werror" } */
typedef unsigned int char32_t;
typedef __CHAR32_TYPE__ char32_t;
extern void abort (void);

View File

@ -3,7 +3,7 @@
/* { dg-do compile } */
/* { dg-options "-std=gnu99" } */
typedef unsigned int char32_t;
typedef __CHAR32_TYPE__ char32_t;
char32_t c0 = U''; /* { dg-error "empty character" } */
char32_t c1 = U'ab'; /* { dg-warning "constant too long" } */