1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | // RUN: %clang_cc1 -verify -fopenmp -ferror-limit 100 -std=c++11 -o - %s // RUN: %clang_cc1 -verify -fopenmp-simd -ferror-limit 100 -std=c++11 -o - %s void foo() { } #pragma omp task // expected-error {{unexpected OpenMP directive '#pragma omp task'}} class S { S(const S &s) { a = s.a + 12; } // expected-note 10 {{implicitly declared private here}} int a; public: S() : a(0) {} S(int a) : a(a) {} operator int() { return a; } S &operator++() { return *this; } S operator+(const S &) { return *this; } }; class S1 { int a; public: S1() : a(0) {} S1 &operator++() { return *this; } S1(const S1 &) = delete; // expected-note 2 {{'S1' has been explicitly marked deleted here}} }; template <class T> int foo() { T a; T &b = a; int r; S1 s1; // expected-error@+1 2 {{call to deleted constructor of 'S1'}} #pragma omp task // expected-note@+1 2 {{predetermined as a firstprivate in a task construct here}} ++s1; #pragma omp task default(none) #pragma omp task default(shared) ++a; #pragma omp task default(none) #pragma omp task // expected-error@+1 {{calling a private constructor of class 'S'}} ++a; #pragma omp task #pragma omp task // expected-error@+1 {{calling a private constructor of class 'S'}} ++a; #pragma omp task default(shared) #pragma omp task ++a; #pragma omp task #pragma omp parallel ++a; // expected-error@+2 {{calling a private constructor of class 'S'}} #pragma omp task ++b; #pragma omp task // expected-error@+1 2 {{calling a private constructor of class 'S'}} #pragma omp parallel shared(a, b) ++a, ++b; // expected-note@+1 2 {{defined as reduction}} #pragma omp parallel reduction(+ : r) // expected-error@+1 2 {{argument of a reduction clause of a parallel construct must not appear in a firstprivate clause on a task construct}} #pragma omp task firstprivate(r) ++r; // expected-note@+1 2 {{defined as reduction}} #pragma omp parallel reduction(+ : r) #pragma omp task default(shared) // expected-error@+1 2 {{reduction variables may not be accessed in an explicit task}} ++r; // expected-note@+1 2 {{defined as reduction}} #pragma omp parallel reduction(+ : r) #pragma omp task // expected-error@+1 2 {{reduction variables may not be accessed in an explicit task}} ++r; #pragma omp parallel // expected-note@+1 2 {{defined as reduction}} #pragma omp for reduction(+ : r) for (int i = 0; i < 10; ++i) // expected-error@+1 2 {{argument of a reduction clause of a for construct must not appear in a firstprivate clause on a task construct}} #pragma omp task firstprivate(r) ++r; #pragma omp parallel // expected-note@+1 2 {{defined as reduction}} #pragma omp for reduction(+ : r) for (int i = 0; i < 10; ++i) #pragma omp task default(shared) // expected-error@+1 2 {{reduction variables may not be accessed in an explicit task}} ++r; #pragma omp parallel // expected-note@+1 2 {{defined as reduction}} #pragma omp for reduction(+ : r) for (int i = 0; i < 10; ++i) #pragma omp task // expected-error@+1 2 {{reduction variables may not be accessed in an explicit task}} ++r; // expected-note@+1 {{non-shared variable in a task construct is predetermined as firstprivate}} #pragma omp task // expected-error@+2 {{reduction variable must be shared}} // expected-error@+1 {{region cannot be closely nested inside 'task' region; perhaps you forget to enclose 'omp for' directive into a parallel region?}} #pragma omp for reduction(+ : r) ++r; // expected-error@+1 {{directive '#pragma omp task' cannot contain more than one 'untied' clause}} #pragma omp task untied untied ++r; // expected-error@+1 {{directive '#pragma omp task' cannot contain more than one 'mergeable' clause}} #pragma omp task mergeable mergeable ++r; return a + b; } int main(int argc, char **argv) { int a; int &b = a; S sa; S &sb = sa; int r; #pragma omp task { // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}} foo(); #pragma omp task( // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}} foo(); #pragma omp task[ // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}} foo(); #pragma omp task] // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}} foo(); #pragma omp task) // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}} foo(); #pragma omp task } // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}} foo(); #pragma omp task // expected-warning@+1 {{extra tokens at the end of '#pragma omp task' are ignored}} #pragma omp task unknown() foo(); L1: foo(); #pragma omp task ; #pragma omp task { goto L1; // expected-error {{use of undeclared label 'L1'}} argc++; } for (int i = 0; i < 10; ++i) { switch (argc) { case (0): #pragma omp task { foo(); break; // expected-error {{'break' statement not in loop or switch statement}} continue; // expected-error {{'continue' statement not in loop statement}} } default: break; } } #pragma omp task default(none) ++argc; // expected-error {{variable 'argc' must have explicitly specified data sharing attributes}} goto L2; // expected-error {{use of undeclared label 'L2'}} #pragma omp task L2: foo(); #pragma omp task { return 1; // expected-error {{cannot return from OpenMP region}} } [[]] // expected-error {{an attribute list cannot appear here}} #pragma omp task for (int n = 0; n < 100; ++n) { } #pragma omp task default(none) #pragma omp task default(shared) ++a; #pragma omp task default(none) #pragma omp task ++a; #pragma omp task default(shared) #pragma omp task ++a; #pragma omp task #pragma omp parallel ++a; #pragma omp task ++b; #pragma omp task #pragma omp parallel shared(a, b) ++a, ++b; #pragma omp task default(none) #pragma omp task default(shared) ++sa; #pragma omp task default(none) #pragma omp task // expected-error@+1 {{calling a private constructor of class 'S'}} ++sa; #pragma omp task #pragma omp task // expected-error@+1 {{calling a private constructor of class 'S'}} ++sa; #pragma omp task default(shared) #pragma omp task ++sa; #pragma omp task #pragma omp parallel ++sa; // expected-error@+2 {{calling a private constructor of class 'S'}} #pragma omp task ++sb; // expected-error@+2 2 {{calling a private constructor of class 'S'}} #pragma omp task #pragma omp parallel shared(sa, sb) ++sa, ++sb; // expected-note@+1 2 {{defined as reduction}} #pragma omp parallel reduction(+ : r) // expected-error@+1 {{argument of a reduction clause of a parallel construct must not appear in a firstprivate clause on a task construct}} #pragma omp task firstprivate(r) // expected-error@+1 {{reduction variables may not be accessed in an explicit task}} ++r; // expected-note@+1 {{defined as reduction}} #pragma omp parallel reduction(+ : r) #pragma omp task default(shared) // expected-error@+1 {{reduction variables may not be accessed in an explicit task}} ++r; // expected-note@+1 {{defined as reduction}} #pragma omp parallel reduction(+ : r) #pragma omp task // expected-error@+1 {{reduction variables may not be accessed in an explicit task}} ++r; #pragma omp parallel // expected-note@+1 2 {{defined as reduction}} #pragma omp for reduction(+ : r) for (int i = 0; i < 10; ++i) // expected-error@+1 {{argument of a reduction clause of a for construct must not appear in a firstprivate clause on a task construct}} #pragma omp task firstprivate(r) // expected-error@+1 {{reduction variables may not be accessed in an explicit task}} ++r; #pragma omp parallel // expected-note@+1 {{defined as reduction}} #pragma omp for reduction(+ : r) for (int i = 0; i < 10; ++i) #pragma omp task default(shared) // expected-error@+1 {{reduction variables may not be accessed in an explicit task}} ++r; #pragma omp parallel // expected-note@+1 {{defined as reduction}} #pragma omp for reduction(+ : r) for (int i = 0; i < 10; ++i) #pragma omp task // expected-error@+1 {{reduction variables may not be accessed in an explicit task}} ++r; // expected-note@+1 {{non-shared variable in a task construct is predetermined as firstprivate}} #pragma omp task // expected-error@+2 {{reduction variable must be shared}} // expected-error@+1 {{region cannot be closely nested inside 'task' region; perhaps you forget to enclose 'omp for' directive into a parallel region?}} #pragma omp for reduction(+ : r) ++r; // expected-error@+1 {{directive '#pragma omp task' cannot contain more than one 'untied' clause}} #pragma omp task untied untied ++r; // expected-error@+1 {{directive '#pragma omp task' cannot contain more than one 'mergeable' clause}} #pragma omp task mergeable mergeable ++r; // expected-note@+2 {{in instantiation of function template specialization 'foo<int>' requested here}} // expected-note@+1 {{in instantiation of function template specialization 'foo<S>' requested here}} return foo<int>() + foo<S>(); } |