• Home
  • Raw
  • Download

Lines Matching full:sections

70 #pragma omp sections firstprivate // expected-error {{expected '(' after 'firstprivate'}}  in foomain()
75 #pragma omp sections firstprivate( // expected-error {{expected expression}} expected-error {{expec… in foomain()
80 #pragma omp sections firstprivate() // expected-error {{expected expression}} in foomain()
85 #pragma omp sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match … in foomain()
90 #pragma omp sections firstprivate(argc, // expected-error {{expected expression}} expected-error {{… in foomain()
95 #pragma omp sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variab… in foomain()
100 #pragma omp sections firstprivate(argc) in foomain()
105 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}} in foomain()
110 #pragma omp sections firstprivate(a, b) // expected-error {{firstprivate variable with incomplete t… in foomain()
115 #pragma omp sections firstprivate(argv[1]) // expected-error {{expected variable name}} in foomain()
120 #pragma omp sections firstprivate(e, g) // expected-error 2 {{firstprivate variable must have an ac… in foomain()
125 #pragma omp sections firstprivate(h) // expected-error {{threadprivate or thread local variable can… in foomain()
130 #pragma omp sections linear(i) // expected-error {{unexpected OpenMP clause 'linear' in directive '… in foomain()
137 …uration is predetermined as private; perhaps you forget to enclose 'omp sections' directive into a… in foomain()
138 #pragma omp sections firstprivate(i) // expected-error {{private variable cannot be firstprivate}} in foomain()
146 #pragma omp sections firstprivate(j) // expected-error {{arguments of OpenMP clause 'firstprivate' … in foomain()
151 #pragma omp sections firstprivate(i) in foomain()
156 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{firstprivate variable must … in foomain()
161 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}} in foomain()
166 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}} in foomain()
183 #pragma omp sections firstprivate // expected-error {{expected '(' after 'firstprivate'}} in main()
188 #pragma omp sections firstprivate( // expected-error {{expected expression}} expected-error {{expec… in main()
193 #pragma omp sections firstprivate() // expected-error {{expected expression}} in main()
198 #pragma omp sections firstprivate(argc // expected-error {{expected ')'}} expected-note {{to match … in main()
203 #pragma omp sections firstprivate(argc, // expected-error {{expected expression}} expected-error {{… in main()
208 #pragma omp sections firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variab… in main()
213 #pragma omp sections firstprivate(argc) in main()
218 #pragma omp sections firstprivate(S1) // expected-error {{'S1' does not refer to a value}} in main()
223 #pragma omp sections firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with inc… in main()
228 #pragma omp sections firstprivate(argv[1]) // expected-error {{expected variable name}} in main()
233 #pragma omp sections firstprivate(2 * 2) // expected-error {{expected variable name}} in main()
238 #pragma omp sections firstprivate(ba) // OK in main()
243 #pragma omp sections firstprivate(ca) // OK in main()
248 #pragma omp sections firstprivate(da) // OK in main()
254 #pragma omp sections firstprivate(xa) // OK in main()
259 #pragma omp sections firstprivate(S2::S2s) // OK in main()
264 #pragma omp sections firstprivate(S2::S2sc) // OK in main()
269 #pragma omp sections safelen(5) // expected-error {{unexpected OpenMP clause 'safelen' in directive… in main()
274 #pragma omp sections firstprivate(e, g) // expected-error 2 {{firstprivate variable must have an ac… in main()
279 #pragma omp sections firstprivate(m) // OK in main()
284 #pragma omp sections firstprivate(h) // expected-error {{threadprivate or thread local variable can… in main()
289 #pragma omp sections private(xa), firstprivate(xa) // expected-error {{private variable cannot be f… in main()
294 #pragma omp sections firstprivate(xa) // OK: may be firstprivate in main()
299 #pragma omp sections firstprivate(j) // expected-error {{arguments of OpenMP clause 'firstprivate' … in main()
304 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{firstprivate variable must … in main()
309 #pragma omp sections lastprivate(n) firstprivate(n) // OK in main()
316 …uration is predetermined as private; perhaps you forget to enclose 'omp sections' directive into a… in main()
317 #pragma omp sections firstprivate(i) // expected-error {{private variable cannot be firstprivate}} in main()
324 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}} in main()
329 #pragma omp sections firstprivate(i) // expected-error {{firstprivate variable must be shared}} in main()