• Home
  • Raw
  • Download

Lines Matching full:single

5 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp single'}}
6 #pragma omp single
8 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp single'}}
9 #pragma omp single foo
13 #pragma omp single in test_no_clause()
16 #pragma omp single in test_no_clause()
28 #pragma omp single in test_branch_protected_scope()
51 // expected-warning@+1 {{extra tokens at the end of '#pragma omp single' are ignored}} in test_invalid_clause()
52 #pragma omp single foo bar in test_invalid_clause()
60 // expected-warning@+1 {{extra tokens at the end of '#pragma omp single' are ignored}} in test_non_identifiers()
61 #pragma omp single; in test_non_identifiers()
64 // expected-error@+2 {{unexpected OpenMP clause 'linear' in directive '#pragma omp single'}} in test_non_identifiers()
65 // expected-warning@+1 {{extra tokens at the end of '#pragma omp single' are ignored}} in test_non_identifiers()
66 #pragma omp single linear(x); in test_non_identifiers()
70 // expected-warning@+1 {{extra tokens at the end of '#pragma omp single' are ignored}} in test_non_identifiers()
71 #pragma omp single private(x); in test_non_identifiers()
75 // expected-warning@+1 {{extra tokens at the end of '#pragma omp single' are ignored}} in test_non_identifiers()
76 #pragma omp single, private(x); in test_non_identifiers()
85 #pragma omp single private( in test_private()
90 #pragma omp single private(, in test_private()
94 #pragma omp single private(, ) in test_private()
98 #pragma omp single private() in test_private()
102 #pragma omp single private(int) in test_private()
106 #pragma omp single private(0) in test_private()
111 #pragma omp single private(x) in test_private()
114 #pragma omp single private(x, y) in test_private()
117 #pragma omp single private(x, y, z) in test_private()
126 #pragma omp single firstprivate( in test_firstprivate()
132 #pragma omp single firstprivate(, in test_firstprivate()
136 #pragma omp single firstprivate(, ) in test_firstprivate()
140 #pragma omp single firstprivate() in test_firstprivate()
144 #pragma omp single firstprivate(int) in test_firstprivate()
148 #pragma omp single firstprivate(0) in test_firstprivate()
153 #pragma omp single nowait nowait // expected-error {{directive '#pragma omp single' cannot contain … in test_nowait()