]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
backport: uninit-C.c: XFAIL on non 64-bit Solaris versions.
authorEric Botcazou <ebotcazou@libertysurf.fr>
Wed, 10 Dec 2003 15:18:13 +0000 (16:18 +0100)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Wed, 10 Dec 2003 15:18:13 +0000 (15:18 +0000)
Backport from mainline:

2003-11-05  Eric Botcazou  <ebotcazou@libertysurf.fr>

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

From-SVN: r74498

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/uninit-C.c

index a857a0dc19199100ffb7f1e5230f636c907918ba..d35950b639ada173eb8132464890997bd2c6632d 100644 (file)
@@ -1,3 +1,11 @@
+2003-12-10  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.
+
 2003-12-06  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/13323
index b99826c32edc18ff8bdf6310f6d5e5efa26d3bc7..e8ca84eefe3e9aaaea57a9fa805ce546cf6205d6 100644 (file)
@@ -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