Lines Matching full:expected
3 int temp; // expected-note 7 {{'temp' declared here}}
5 …clare reduction // expected-error {{expected '(' afte…
6 …clare reduction { // expected-error {{expected '(' afte…
7 …clare reduction( // expected-error {{expected identifi…
8 …clare reduction(# // expected-error {{expected identifi…
9 …clare reduction(/ // expected-error {{expected identifi…
10 …p declare reduction(+ // expected-error {{expected ':'}}
11 …clare reduction(operator // expected-error {{expected identifi…
12 … // expected-error {{expected identifier or one of the following operators: '+', '-', '*', '&', '…
13 …eclare reduction(oper: // expected-error {{expected a type}}
14 …oper; // expected-error {{expected ':'}} expected-error {{e…
15 …fun : int // expected-error {{expected ':'}} expected-error {{e…
16 #pragma omp declare reduction(+ : const int: // expected-error {{redu…
17 #pragma omp declare reduction(- : volatile int: // expected-error {{redu…
18 …* : int; // expected-error {{expected ','}} expected-error {{e…
19 … // expected-error {{cannot combine with previous 'double' declaration specifi…
20 …: double, char, : // expected-error {{expected a type}} expected-error {{…
21 …int, S: // expected-error {{unknown type name 'S'}} expected-error…
22 #pragma omp declare reduction(|| : int, double : temp += omp_in) // expected-error 2 {{on…
23 #pragma omp declare reduction(| : char, float : omp_out += ::temp) // expected-error 2 {{on…
24 …) { // expected-warning {{extra tokens at the end of '#pragma omp declare reduction' ar…
25 … // expected-warning {{extra tokens at the end of '#pragma omp declare reduction' are ignored}} e…
26 #pragma omp declare reduction(fun : long & : omp_out += omp_in) // expected-error {{redu…
27 #pragma omp declare reduction(fun : long(void) : omp_out += omp_in) // expected-error {{redu…
28 #pragma omp declare reduction(fun : long[3] : omp_out += omp_in) // expected-error {{redu…
29 … int, long : omp_out += omp_in) // expected-error {{redefinition of user-defined reduction for typ…
36 #pragma omp declare reduction(fun : T : temp) // expected-error {{only 'omp_in' or 'o…
37 …clare reduction(fun1 : T : omp_out++) // expected-note {{previous definition is here}} exp…
38 #pragma omp declare reduction(fun1 : T : omp_out += omp_in) // expected-error {{redefinition of use…
39 … // expected-error {{reduction type cannot be a reference type}} expected-error {{redefinition o…
40 #pragma omp declare reduction(foo : T : omp_out += this->a) // expected-error {{invalid use of 'thi…
43 Class1<char &> e; // expected-note {{in instantiation of template class 'Class1<char &>' requested …
50 …2 : long : omp_out += omp_in) // expected-note {{previous d…
51 …2 : long : omp_out += omp_in) // expected-error {{redefinit…
52 … omp_out += omp_in) initializer // expected-error {{expected '(' afte…
53 … // expected-error {{expected '(' after 'initializer'}} expected-error {{ex…
54 … // expected-error {{expected '(' after 'initializer'}} expected-error {{ex…
55 … omp_out += omp_in) initializer() // expected-error {{expected expressi…
56 …: long : omp_out += omp_in) initializer(temp) // expected-error {{only 'omp…
57 … += omp_in) initializer(omp_orig // expected-error {{expected ')'}} expected-n…
58 … += omp_in) initializer(omp_priv Class1 < int > ()) // expected-error {{expected ')'}} expected-n…
59 …t += omp_in) initializer(omp_priv Class2 < int > ()) // expected-error {{expected ')'}} expected-n…
60 … += omp_in) initializer(omp_priv 23) // expected-error {{expected ')'}} expected-n…
61 …alizer(omp_priv 23)) // expected-error {{expected ')'}} expected-note {{to match thi…
62 …(omp_in = 23) // expected-error {{use of undeclared identifier 'omp_priv'; did you m…
69 #pragma omp declare reduction(red : T : omp_out++) // expected-note {{previous definition is here}} in fun()
70 #pragma omp declare reduction(red : T : omp_out++) // expected-error {{redefinition of user-defined… in fun()
81 #pragma omp declare reduction(red1 : T : omp_out++) // expected-note {{previous definition is her… in foo()
82 #pragma omp declare reduction(red1 : int : omp_out++) // expected-error {{redefinition of user-defi… in foo()
89 …#pragma omp parallel reduction (red2 : i) // expected-error {{incorrect reduction identifier, expe… in foo()
94 #pragma omp declare reduction(red1 : int : omp_out++) // expected-note {{previous definition is her… in foo()
96 #pragma omp declare reduction(red1 : T : omp_out++) // expected-error {{redefinition of user-define… in foo()
103 …#pragma omp parallel reduction (red2 : i) // expected-error {{incorrect reduction identifier, expe… in foo()
120 … parallel reduction (::Class2<int>::fun : i) // expected-error {{incorrect reduction identifier, e… in main()
123 …return fun(15) + foo(15); // expected-note {{in instantiation of function template specialization … in main()