• Home
  • Raw
  • Download

Lines Matching full:sections

71 #pragma omp sections lastprivate // expected-error {{expected '(' after 'lastprivate'}}  in foomain()
76 #pragma omp sections lastprivate( // expected-error {{expected expression}} expected-error {{expect… in foomain()
81 #pragma omp sections lastprivate() // expected-error {{expected expression}} in foomain()
86 #pragma omp sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match t… in foomain()
91 #pragma omp sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{e… in foomain()
96 #pragma omp sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variabl… in foomain()
101 #pragma omp sections lastprivate(argc) in foomain()
106 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}} in foomain()
111 #pragma omp sections lastprivate(a, b) // expected-error {{lastprivate variable with incomplete typ… in foomain()
116 #pragma omp sections lastprivate(argv[1]) // expected-error {{expected variable name}} in foomain()
121 #pragma omp sections lastprivate(e, g) // expected-error 2 {{calling a private constructor of class… in foomain()
126 #pragma omp sections lastprivate(h) // expected-error {{threadprivate or thread local variable cann… in foomain()
131 #pragma omp sections linear(i) // expected-error {{unexpected OpenMP clause 'linear' in directive '… in foomain()
138 …uration is predetermined as private; perhaps you forget to enclose 'omp sections' directive into a… in foomain()
139 #pragma omp sections lastprivate(i) // expected-error {{lastprivate variable must be shared}} in foomain()
147 #pragma omp sections lastprivate(j) in foomain()
152 #pragma omp sections lastprivate(i) in foomain()
177 #pragma omp sections lastprivate // expected-error {{expected '(' after 'lastprivate'}} in main()
182 #pragma omp sections lastprivate( // expected-error {{expected expression}} expected-error {{expect… in main()
187 #pragma omp sections lastprivate() // expected-error {{expected expression}} in main()
192 #pragma omp sections lastprivate(argc // expected-error {{expected ')'}} expected-note {{to match t… in main()
197 #pragma omp sections lastprivate(argc, // expected-error {{expected expression}} expected-error {{e… in main()
202 #pragma omp sections lastprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variabl… in main()
207 #pragma omp sections lastprivate(argc) in main()
212 #pragma omp sections lastprivate(S1) // expected-error {{'S1' does not refer to a value}} in main()
217 #pragma omp sections lastprivate(a, b, c, d, f) // expected-error {{lastprivate variable with incom… in main()
222 #pragma omp sections lastprivate(argv[1]) // expected-error {{expected variable name}} in main()
227 #pragma omp sections lastprivate(2 * 2) // expected-error {{expected variable name}} in main()
232 #pragma omp sections lastprivate(ba) in main()
237 #pragma omp sections lastprivate(ca) // expected-error {{shared variable cannot be lastprivate}} in main()
242 #pragma omp sections lastprivate(da) // expected-error {{shared variable cannot be lastprivate}} in main()
248 #pragma omp sections lastprivate(xa) // OK in main()
253 #pragma omp sections lastprivate(S2::S2s) // expected-error {{shared variable cannot be lastprivate… in main()
258 #pragma omp sections lastprivate(S2::S2sc) // expected-error {{shared variable cannot be lastprivat… in main()
263 #pragma omp sections safelen(5) // expected-error {{unexpected OpenMP clause 'safelen' in directive… in main()
268 #pragma omp sections lastprivate(e, g) // expected-error {{calling a private constructor of class '… in main()
273 #pragma omp sections lastprivate(m) // expected-error {{'operator=' is a private member of 'S3'}} in main()
278 #pragma omp sections lastprivate(h, B::x) // expected-error 2 {{threadprivate or thread local varia… in main()
283 #pragma omp sections private(xa), lastprivate(xa) // expected-error {{private variable cannot be la… in main()
288 #pragma omp sections lastprivate(i) in main()
293 #pragma omp sections lastprivate(xa) // expected-error {{lastprivate variable must be shared}} in main()
298 #pragma omp sections lastprivate(xa) // expected-error {{lastprivate variable must be shared}} in main()
303 #pragma omp sections lastprivate(j) in main()
308 #pragma omp sections firstprivate(m) lastprivate(m) // expected-error {{'operator=' is a private me… in main()
313 #pragma omp sections lastprivate(n) firstprivate(n) // OK in main()
318 #pragma omp sections lastprivate(r) // OK in main()