Home | History | Annotate | Download | only in OpenMP

Lines Matching full:pragma

56 #pragma omp threadprivate(h) // expected-note {{defined as threadprivate or thread local}}
66 #pragma omp distribute firstprivate // expected-error {{expected '(' after 'firstprivate'}}
68 #pragma omp distribute firstprivate ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
70 #pragma omp distribute firstprivate () // expected-error {{expected expression}}
72 #pragma omp target
73 #pragma omp teams
74 #pragma omp distribute firstprivate (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
76 #pragma omp target
77 #pragma omp teams
78 #pragma omp distribute firstprivate (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
80 #pragma omp target
81 #pragma omp teams
82 #pragma omp distribute firstprivate (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
84 #pragma omp target
85 #pragma omp teams
86 #pragma omp distribute firstprivate (argc)
88 #pragma omp target
89 #pragma omp teams
90 #pragma omp distribute firstprivate (S1) // expected-error {{'S1' does not refer to a value}}
92 #pragma omp target
93 #pragma omp teams
94 #pragma omp distribute firstprivate (a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}}
96 #pragma omp target
97 #pragma omp teams
98 #pragma omp distribute firstprivate (argv[1]) // expected-error {{expected variable name}}
100 #pragma omp target
101 #pragma omp teams
102 #pragma omp distribute firstprivate(ba)
104 #pragma omp target
105 #pragma omp teams
106 #pragma omp distribute firstprivate(ca) // expected-error {{no matching constructor for initialization of 'S3'}}
108 #pragma omp target
109 #pragma omp teams
110 #pragma omp distribute firstprivate(da)
112 #pragma omp target
113 #pragma omp teams
114 #pragma omp distribute firstprivate(S2::S2s)
116 #pragma omp target
117 #pragma omp teams
118 #pragma omp distribute firstprivate(S2::S2sc)
120 #pragma omp target
121 #pragma omp teams
122 #pragma omp distribute firstprivate(h) // expected-error {{threadprivate or thread local variable cannot be firstprivate}}
124 #pragma omp target
125 #pragma omp teams
126 #pragma omp distribute private(i), firstprivate(i) // expected-error {{private variable cannot be firstprivate}} expected-note{{defined as private}}
128 #pragma omp target
129 #pragma omp teams shared(i)
130 #pragma omp distribute firstprivate(i)
132 #pragma omp target
133 #pragma omp teams shared(i)
134 #pragma omp distribute firstprivate(i) // expected-note {{defined as firstprivate}}
136 #pragma omp target
137 #pragma omp teams private(argc) // expected-note {{defined as private}}
138 #pragma omp distribute firstprivate(argc) // expected-error {{private variable in '#pragma omp teams' cannot be firstprivate in '#pragma omp distribute'}}
140 #pragma omp target
141 #pragma omp teams reduction(+:argc) // expected-note {{defined as reduction}}
142 #pragma omp distribute firstprivate(argc) // expected-error {{reduction variable in '#pragma omp teams' cannot be firstprivate in '#pragma omp distribute'}}
144 #pragma omp target
145 #pragma omp teams
146 #pragma omp distribute firstprivate(j)
148 #pragma omp target
149 #pragma omp teams
150 #pragma omp distribute lastprivate(argc), firstprivate(argc) // expected-error {{lastprivate variable cannot be firstprivate in '#pragma omp distribute'}} expected-note{{defined as lastprivate}}
152 #pragma omp target
153 #pragma omp teams
154 #pragma omp distribute firstprivate(argc), lastprivate(argc) // expected-error {{lastprivate variable cannot be firstprivate in '#pragma omp distribute'}} expected-note{{defined as firstprivate}}