blob: 0d439b1669c17442694b6603ec588f099d0aaa4d [file] [log] [blame]
Hans Wennborg3af16fd2012-06-04 10:19:34 +00001// RUN: %clang_cc1 -triple i686-pc-linux-gnu -fsyntax-only -verify -pedantic %s
Eli Friedmanf22f77f2009-04-19 20:29:08 +00002
3__thread int t1;
Hans Wennborg3af16fd2012-06-04 10:19:34 +00004__thread extern int t2; // expected-warning {{'__thread' before 'extern'}}
5__thread static int t3; // expected-warning {{'__thread' before 'static'}}
Eli Friedmanf22f77f2009-04-19 20:29:08 +00006__thread __private_extern__ int t4;
7struct 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 Wennborg3af16fd2012-06-04 10:19:34 +00009
Eli Friedmanf22f77f2009-04-19 20:29:08 +000010int 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 Wennborg3af16fd2012-06-04 10:19:34 +000012 extern __thread int t9;
13 static __thread int t10;
Eli Friedmanf22f77f2009-04-19 20:29:08 +000014 __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 Wennborg3af16fd2012-06-04 10:19:34 +000018
Eli Friedmanf22f77f2009-04-19 20:29:08 +000019__thread typedef int t14; // expected-error {{'__thread' is only allowed on variable declarations}}
Richard Trieu2fe9b7f2011-12-15 00:38:15 +000020__thread int t15; // expected-note {{previous definition is here}}
Eli Friedmanf22f77f2009-04-19 20:29:08 +000021int t15; // expected-error {{non-thread-local declaration of 't15' follows thread-local declaration}}
Richard Trieu2fe9b7f2011-12-15 00:38:15 +000022int t16; // expected-note {{previous definition is here}}
Eli Friedmanf22f77f2009-04-19 20:29:08 +000023__thread int t16; // expected-error {{thread-local declaration of 't16' follows non-thread-local declaration}}