* gcc.dg/tls/diag-3.c: Fix expected message strings.
From-SVN: r56336
This commit is contained in:
parent
236261548b
commit
55ae907993
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user