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]

[3.3 testsuite] Backport XFAIL


Hi Gaby,

May I backport the following patch to the branch?  It doesn't hide a bug, but 
simply records that you can't have integers with TImode on 32-bit 
HOST_WIDE_INT hosts.


2003-12-09  Eric Botcazou  <ebotcazou@libertysurf.fr>

	Backport from mainline:
	2003-11-05  Eric Botcazou  <ebotcazou@libertysurf.fr>

	* gcc.dg/uninit-C.c: XFAIL on non 64-bit Solaris versions.


-- 
Eric Botcazou
Index: gcc.dg/uninit-C.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/testsuite/gcc.dg/uninit-C.c,v
retrieving revision 1.2
diff -u -r1.2 uninit-C.c
--- gcc.dg/uninit-C.c	6 Jun 2003 12:29:13 -0000	1.2
+++ gcc.dg/uninit-C.c	27 Oct 2003 12:13:30 -0000
@@ -4,7 +4,7 @@
 
 /* Not all platforms support TImode integers.  */
 #if defined(__LP64__) || defined(__sparc__)
-typedef int TItype __attribute__ ((mode (TI)));
+typedef int TItype __attribute__ ((mode (TI)));  /* { dg-error "no data type for mode" "TI" { target sparc-sun-solaris2.[0-6]* } } */
 #else
 typedef long TItype;
 #endif

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