From: Eric Botcazou Date: Mon, 2 May 2005 07:22:45 +0000 (+0200) Subject: titype-1.c: Fix dg-error target regexp. X-Git-Tag: releases/gcc-3.4.4~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64eeb2ccad54c420b76d26058ec93c805f95a793;p=thirdparty%2Fgcc.git titype-1.c: Fix dg-error target regexp. * gcc.dg/titype-1.c: Fix dg-error target regexp. * gcc.dg/uninit-C.c: Likewise. From-SVN: r99092 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f179a5cc7de5..b963065c0adf 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-05-02 Eric Botcazou + + * gcc.dg/titype-1.c: Fix dg-error target regexp. + * gcc.dg/uninit-C.c: Likewise. + 2004-12-22 Mark Mitchell PR c++/18464 diff --git a/gcc/testsuite/gcc.dg/titype-1.c b/gcc/testsuite/gcc.dg/titype-1.c index ee41db9778a9..12175f5bbf30 100644 --- a/gcc/testsuite/gcc.dg/titype-1.c +++ b/gcc/testsuite/gcc.dg/titype-1.c @@ -2,7 +2,7 @@ /* Not all platforms support TImode integers. */ #if defined(__LP64__) || defined(__sparc__) -typedef int TItype __attribute__ ((mode (TI))); /* { dg-error "no data type for mode" "TI" { target sparc-sun-solaris2.[0-6]* } } */ +typedef int TItype __attribute__ ((mode (TI))); /* { dg-error "no data type for mode" "TI" { target sparc-sun-solaris2.[0-6] sparc-sun-solaris2.[0-6].* } } */ #else typedef long TItype; #endif diff --git a/gcc/testsuite/gcc.dg/uninit-C.c b/gcc/testsuite/gcc.dg/uninit-C.c index 3ecbf8ae43ac..44c75c1624b1 100644 --- a/gcc/testsuite/gcc.dg/uninit-C.c +++ b/gcc/testsuite/gcc.dg/uninit-C.c @@ -4,7 +4,7 @@ /* Not all platforms support TImode integers. */ #if defined(__LP64__) || defined(__sparc__) -typedef int TItype __attribute__ ((mode (TI))); /* { dg-error "no data type for mode" "TI" { target sparc-sun-solaris2.[0-6]* } } */ +typedef int TItype __attribute__ ((mode (TI))); /* { dg-error "no data type for mode" "TI" { target sparc-sun-solaris2.[0-6] sparc-sun-solaris2.[0-6].* } } */ #else typedef long TItype; #endif