Home | History | Annotate | Download | only in OpenMP

Lines Matching full:pragma

4 #pragma omp threadprivate // expected-error {{expected '(' after 'threadprivate'}}
5 #pragma omp threadprivate( // expected-error {{expected identifier}} expected-error {{expected ')'}} expected-note {{to match this '('}}
6 #pragma omp threadprivate() // expected-error {{expected identifier}}
7 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}}
13 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}}
19 #pragma omp threadprivate(a)
20 #pragma omp threadprivate(u) // expected-error {{use of undeclared identifier 'u'}}
21 #pragma omp threadprivate(d, a)
24 #pragma omp threadprivate(l)) // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
28 #pragma omp threadprivate (a) (
29 // expected-warning@-1 {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
30 #pragma omp threadprivate (a) [ // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
31 #pragma omp threadprivate (a) { // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
32 #pragma omp threadprivate (a) ) // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
33 #pragma omp threadprivate (a) ] // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
34 #pragma omp threadprivate (a) } // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
35 #pragma omp threadprivate a // expected-error {{expected '(' after 'threadprivate'}}
36 #pragma omp threadprivate(d // expected-error {{expected ')'}} expected-note {{to match this '('}}
37 #pragma omp threadprivate(d)) // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
39 #pragma omp threadprivate(x)) // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
40 #pragma omp threadprivate(y)),
41 // expected-warning@-1 {{extra tokens at the end of '#pragma omp threadprivate' are ignored}}
42 #pragma omp threadprivate(a,d)
43 #pragma omp threadprivate(d.a) // expected-error {{expected identifier}}
44 #pragma omp threadprivate((float)a) // expected-error {{expected unqualified-id}}
46 #pragma omp threadprivate(faa) // expected-error {{use of undeclared identifier 'faa'; did you mean 'foa'?}}
47 #pragma omp threadprivate(foo) // expected-error {{'foo' is not a global variable, static local variable or static data member}}
48 #pragma omp threadprivate (int a=2) // expected-error {{expected unqualified-id}}
53 #pragma omp threadprivate (e) // expected-error {{threadprivate variable with incomplete type 'IncompleteSt'}}
56 #pragma omp threadprivate (f) // expected-error {{arguments of '#pragma omp threadprivate' cannot be of reference type 'int &'}}
65 #pragma omp threadprivate (b, a) // expected-error {{'a' is not a global variable, static local variable or static data member}}
67 #pragma omp threadprivate (b) // expected-error {{use of undeclared identifier 'b'}}
68 #pragma omp threadprivate (TestClass::b) // expected-error {{'#pragma omp threadprivate' must appear in the scope of the 'TestClass::b' variable declaration}}
69 #pragma omp threadprivate (g)
73 #pragma omp threadprivate (m, m)
75 #pragma omp threadprivate (m) // expected-error {{use of undeclared identifier 'm'}}
76 #pragma omp threadprivate (ns::m)
77 #pragma omp threadprivate (ns:m) // expected-error {{unexpected ':' in nested name specifier; did you mean '::'?}}
81 #pragma omp threadprivate (h, i)
92 #pragma omp threadprivate (s)
94 #pragma omp threadprivate (s) // expected-error {{use of undeclared identifier 's'}}
97 #pragma omp threadprivate (t) // expected-error {{variable 't' cannot be threadprivate because it is thread-local}}
103 #pragma omp threadprivate (reg0) // expected-error {{variable 'reg0' cannot be threadprivate because it is a global named register variable}}
106 #pragma omp threadprivate (o)
109 #pragma omp threadprivate (o)
110 #pragma omp threadprivate (o)
112 #pragma omp threadprivate (o) // expected-error {{reference to 'o' is ambiguous}}
113 #pragma omp threadprivate (::o)
123 #pragma omp threadprivate(LocalClass)
128 #pragma omp threadprivate(argc+y) // expected-error {{expected identifier}}
129 #pragma omp threadprivate(argc,y) // expected-error 2 {{arguments of '#pragma omp threadprivate' must have static storage duration}}
130 #pragma omp threadprivate(d2) // expected-error {{'#pragma omp threadprivate' must precede all references to variable 'd2'}}
131 #pragma omp threadprivate(d1)
134 #pragma omp threadprivate(d3) // expected-error {{'#pragma omp threadprivate' must appear in the scope of the 'd3' variable declaration}}
136 #pragma omp threadprivate(d3)
138 #pragma omp threadprivate(d4) // expected-error {{'#pragma omp threadprivate' cannot be an immediate substatement}}
140 #pragma omp threadprivate(a) // expected-error {{'#pragma omp threadprivate' must appear in the scope of the 'a' variable declaration}}
142 #pragma omp threadprivate(d) // expected-error {{'#pragma omp threadprivate' must appear in the scope of the 'd' variable declaration}}