Lines Matching full:thread

4 …ple i686-pc-linux-gnu -fsyntax-only -Wno-private-extern -verify=expected,thread-local -pedantic -x…
6 …ple i686-pc-linux-gnu -fsyntax-only -Wno-private-extern -verify=expected,thread-local -pedantic -x…
7 …ple i686-pc-linux-gnu -fsyntax-only -Wno-private-extern -verify=expected,thread-local -pedantic %s…
9 __thread int t1; // thread-local-warning {{'_Thread_local' is a C11 extension}}
10 __thread extern int t2; // thread-local-warning {{'_Thread_local' is a C11 extension}}
11 __thread static int t3; // thread-local-warning {{'_Thread_local' is a C11 extension}}
17 __private_extern__ __thread int t4; // thread-local-warning {{'_Thread_local' is a C11 extension}}
18 struct t5 { __thread int x; }; // thread-local-warning {{'_Thread_local' is a C11 extension}}
26 __thread int t6(void); // thread-local-warning {{'_Thread_local' is a C11 extension}}
36 // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
37 __thread int t8; // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
43 extern __thread int t9; // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
44 static __thread int t10; // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
45 …__private_extern__ __thread int t11; // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
48 // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
50 // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
53 // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
55 // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
58 // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
60 // thread-local-warning {{'_Thread_local' is a C11 extension}} in f()
64 // thread-local-warning {{'_Thread_local' is a C11 extension}}
66 // thread-local-warning {{'_Thread_local' is a C11 extension}}
67 extern int t15; // expected-error {{non-thread-local declaration of 't15' follows thread-local decl…
69 __thread int t16; // expected-error {{thread-local declaration of 't16' follows non-thread-local de…
70 // thread-local-warning {{'_Thread_local' is a C11 extension}}
74 _Thread_local int t17; // expected-error {{thread-local declaration of 't17' with static initializa…
78 thread_local int t18; // expected-error {{thread-local declaration of 't18' with dynamic initializa…
82 __thread int thread_int; // thread-local-warning {{'_Thread_local' is a C11 extension}}
95 __thread int non_const_init = non_const(); // thread-local-warning {{'_Thread_local' is a C11 exten…
99 // expected-error@-4 {{initializer for thread-local variable must be a constant expression}}
109 __thread S s; // thread-local-warning {{'_Thread_local' is a C11 extension}}
111 // expected-error@-2 {{type of thread-local variable has non-trivial destruction}}
122 __thread HasCtor var_with_ctor; // thread-local-warning {{'_Thread_local' is a C11 extension}}
124 // expected-error@-2 {{initializer for thread-local variable must be a constant expression}}
131 __thread int aggregate[10] = {0}; // thread-local-warning {{'_Thread_local' is a C11 extension}}