Commit 55ae9079 by Richard Henderson Committed by Richard Henderson

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

From-SVN: r56336
parent 23626154
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.
......
/* 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;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment