From: Zack Weinberg Date: Sun, 11 Jan 2004 22:35:15 +0000 (+0000) Subject: * gcc.dg/tls/diag-3.c: Tweak dg-error regexp. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=70adfc365c0df45c50421f9b631fb0622a10f0db;p=gcc.git * gcc.dg/tls/diag-3.c: Tweak dg-error regexp. From-SVN: r75690 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a10aef78621..92da799eefb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-01-11 Zack Weinberg + + * gcc.dg/tls/diag-3.c: Tweak dg-error regexp. + 2004-01-11 Ian Lance Taylor PR c++/3478 diff --git a/gcc/testsuite/gcc.dg/tls/diag-3.c b/gcc/testsuite/gcc.dg/tls/diag-3.c index 89d1bea8ede..f1ce06b70d8 100644 --- a/gcc/testsuite/gcc.dg/tls/diag-3.c +++ b/gcc/testsuite/gcc.dg/tls/diag-3.c @@ -1,7 +1,7 @@ /* Report invalid extern and __thread combinations. */ extern int j; /* { dg-error "previous declaration" } */ -__thread int j; /* { dg-error "follows non thread-local" } */ +__thread int j; /* { dg-error "follows non-thread-local" } */ extern __thread int i; /* { dg-error "previous declaration" } */ int i; /* { dg-error "follows thread-local" } */