Hans Wennborg | 3af16fd | 2012-06-04 10:19:34 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only -verify -pedantic %s |
Eli Friedman | f22f77f | 2009-04-19 20:29:08 +0000 | [diff] [blame] | 2 | |
| 3 | __thread int t1; |
Hans Wennborg | 3af16fd | 2012-06-04 10:19:34 +0000 | [diff] [blame^] | 4 | __thread extern int t2; // expected-warning {{'__thread' before 'extern'}} |
| 5 | __thread static int t3; // expected-warning {{'__thread' before 'static'}} |
Eli Friedman | f22f77f | 2009-04-19 20:29:08 +0000 | [diff] [blame] | 6 | __thread __private_extern__ int t4; |
| 7 | struct t5 { __thread int x; }; // expected-error {{type name does not allow storage class to be specified}} |
| 8 | __thread int t6(); // expected-error {{'__thread' is only allowed on variable declarations}} |
Hans Wennborg | 3af16fd | 2012-06-04 10:19:34 +0000 | [diff] [blame^] | 9 | |
Eli Friedman | f22f77f | 2009-04-19 20:29:08 +0000 | [diff] [blame] | 10 | int f(__thread int t7) { // expected-error {{'__thread' is only allowed on variable declarations}} |
| 11 | __thread int t8; // expected-error {{'__thread' variables must have global storage}} |
Hans Wennborg | 3af16fd | 2012-06-04 10:19:34 +0000 | [diff] [blame^] | 12 | extern __thread int t9; |
| 13 | static __thread int t10; |
Eli Friedman | f22f77f | 2009-04-19 20:29:08 +0000 | [diff] [blame] | 14 | __thread __private_extern__ int t11; |
| 15 | __thread auto int t12; // expected-error {{'__thread' variables must have global storage}} |
| 16 | __thread register int t13; // expected-error {{'__thread' variables must have global storage}} |
| 17 | } |
Hans Wennborg | 3af16fd | 2012-06-04 10:19:34 +0000 | [diff] [blame^] | 18 | |
Eli Friedman | f22f77f | 2009-04-19 20:29:08 +0000 | [diff] [blame] | 19 | __thread typedef int t14; // expected-error {{'__thread' is only allowed on variable declarations}} |
Richard Trieu | 2fe9b7f | 2011-12-15 00:38:15 +0000 | [diff] [blame] | 20 | __thread int t15; // expected-note {{previous definition is here}} |
Eli Friedman | f22f77f | 2009-04-19 20:29:08 +0000 | [diff] [blame] | 21 | int t15; // expected-error {{non-thread-local declaration of 't15' follows thread-local declaration}} |
Richard Trieu | 2fe9b7f | 2011-12-15 00:38:15 +0000 | [diff] [blame] | 22 | int t16; // expected-note {{previous definition is here}} |
Eli Friedman | f22f77f | 2009-04-19 20:29:08 +0000 | [diff] [blame] | 23 | __thread int t16; // expected-error {{thread-local declaration of 't16' follows non-thread-local declaration}} |