This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix up gcc.dg/utf-array.c on some targets (PR preprocessor/37324)


The recent changes to gcc.dg/utf-array.c did not fix the failures I was
seeing on IA64.  The problem is that the syntax of the modified dg-error
statements is wrong.  It is missing an empty message field before the
target field and the target field itself is missing curly brakets around
the ! expression part of the target field.  This patch fixes the problem
and allows the test to pass on IA64.

OK for checkin?

2008-09-24  Steve Ellcey  <sje@cup.hp.com>

	* gcc.dg/utf-array.c: Fix syntax of dg-error stmts.


Index: gcc.dg/utf-array.c
===================================================================
--- gcc.dg/utf-array.c	(revision 140623)
+++ gcc.dg/utf-array.c	(working copy)
@@ -16,7 +16,7 @@ const char	s_3[]	= L"ab";	/* { dg-error 
 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";	/* { dg-error "from incompatible" { target !wchar_t_char16_t_compatible } } */
+const char16_t	s16_3[]	= L"ab";	/* { dg-error "from incompatible" "" { target { ! wchar_t_char16_t_compatible } } } */
 
 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" } */
@@ -27,7 +27,7 @@ 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" { target !wchar_t_char32_t_compatible } } */
+const char32_t	s32_3[]	= L"ab";	/* { dg-error "from incompatible" "" { target { ! wchar_t_char32_t_compatible } } } */
 
 const char32_t	s32_4[0] = U"ab";	/* { dg-warning "chars is too long" } */
 const char32_t	s32_5[1] = U"ab";	/* { dg-warning "chars is too long" } */
@@ -36,6 +36,6 @@ const char32_t	s32_7[3] = U"ab";
 const char32_t	s32_8[4] = U"ab";
 
 const wchar_t	sw_0[]	= "ab";		/* { dg-error "from non-wide" } */
-const wchar_t	sw_1[]	= u"ab";	/* { dg-error "from incompatible" { target !wchar_t_char16_t_compatible } } */
-const wchar_t	sw_2[]	= U"ab";	/* { dg-error "from incompatible" { target !wchar_t_char32_t_compatible } } */
+const wchar_t	sw_1[]	= u"ab";	/* { dg-error "from incompatible" "" { target { ! wchar_t_char16_t_compatible } } } */
+const wchar_t	sw_2[]	= U"ab";	/* { dg-error "from incompatible" "" { target { ! wchar_t_char32_t_compatible } } } */
 const wchar_t	sw_3[]	= L"ab";


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]