* gcc.dg/tls/diag-3.c: Fix expected message strings.

From-SVN: r56336
This commit is contained in:
Richard Henderson 2002-08-14 17:16:11 -07:00 committed by Richard Henderson
parent 236261548b
commit 55ae907993
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2002-08-14 Richard Henderson <rth@redhat.com>
* gcc.dg/tls/diag-3.c: Fix expected message strings.
2002-08-14 Neil Booth <neil@daikokuya.co.uk>
* gcc.dg/cpp/_Pragma3.c: New test.

View File

@ -1,10 +1,10 @@
/* Report invalid extern and __thread combinations. */
extern int j; /* { dg-error "previous declaration" } */
__thread int j; /* { dg-error "thread-local declaration for" } */
__thread int j; /* { dg-error "follows non thread-local" } */
extern __thread int i; /* { dg-error "previous declaration" } */
int i; /* { dg-error "non thread-local" } */
int i; /* { dg-error "follows thread-local" } */
extern __thread int k; /* This is fine. */
__thread int k;