Lines Matching full:update

13 #pragma omp target update to(x)  in xxx()
21 #pragma omp target update to(y) // expected-error {{the host cannot update a declare target variabl… in yyy()
28 #pragma omp target update from(z) // expected-error {{the host cannot update a declare target varia… in zzz()
52 …pragma omp target update // expected-error {{expected at least one 'to' clause or 'from' clause sp…
53 …#pragma omp target update to(m) { // expected-warning {{extra tokens at the end of '#pragma omp ta…
54 …#pragma omp target update to(m) ( // expected-warning {{extra tokens at the end of '#pragma omp ta…
55 …#pragma omp target update to(m) [ // expected-warning {{extra tokens at the end of '#pragma omp ta…
56 …#pragma omp target update to(m) ] // expected-warning {{extra tokens at the end of '#pragma omp ta…
57 …#pragma omp target update to(m) ) // expected-warning {{extra tokens at the end of '#pragma omp ta…
64 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
65 #pragma omp target update to(: s)
67 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
68 #pragma omp target update to(:)
70 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
71 #pragma omp target update to(,:)
75 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
76 #pragma omp target update to(foobar: s)
80 #pragma omp target update to(m: s)
81 #pragma omp target update to(mapper(id): s)
83 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
84 #pragma omp target update to(present: s)
88 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
89 #pragma omp target update to(mapper(id) s)
93 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
94 #pragma omp target update to(present s)
98 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
99 #pragma omp target update to(mapper(id))
103 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
104 #pragma omp target update to(present)
106 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
107 #pragma omp target update to(mapper(id):)
110 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
111 #pragma omp target update to(present:)
115 #pragma omp target update to(mapper(id), present: s)
118 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
119 #pragma omp target update to(present, mapper(id): s)
121 #pragma omp target update to(mapper(id) present: s)
123 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
124 #pragma omp target update to(present mapper(id): s)
128 #pragma omp target update to(mapper(id),: s)
131 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
132 #pragma omp target update to(present , : s)
135 #pragma omp target update to(mapper(id),,: s)
140 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
141 #pragma omp target update to(present,,: s)
143 #pragma omp target update to(mapper(id), present,: s)
147 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
148 #pragma omp target update to(present, mapper(id),: s)
150 …gma omp target update from(m) allocate(m) // expected-error {{unexpected OpenMP clause 'allocate' …
156update to(marr[0:2][2:4][1:2]) // lt50-error {{array section does not specify contiguous storage}}…
158update from(marr[0:2][2:4][1:2]) // lt50-error {{array section does not specify contiguous storage…
160update to(marr[0:][1:2:2][1:2]) // ge50-error {{array section does not specify length for outermos…
162update from(marr[0:][1:2:2][1:2]) // ge50-error {{array section does not specify length for outerm…
165update to(arr[0:2][2:4][:2][1]) // lt50-error {{array section does not specify contiguous storage}…
167update from(arr[0:2][2:4][:2][1]) // lt50-error {{array section does not specify contiguous storag…
170update to(dptr[0:2][2:4][1:2]) // lt50-error {{array section does not specify contiguous storage}}…
172update from(dptr[0:2][2:4][1:2]) // lt50-error {{array section does not specify contiguous storage…
178 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
179 #pragma omp target update to(iarr[0:][1:2:-1])
184 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
185 #pragma omp target update from(iarr[0:][1:2:-1])
191 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
192 #pragma omp target update to(iarr[0: :2][1:2])
198 …@+1 {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
199 #pragma omp target update from(iarr[0: :2][1:2])
215 #pragma omp target update from(arr) // expected-no-error
241 #pragma omp target update to(test[1])
243 #pragma omp target update to(test[1, 2]) // cxx23-error {{type 'int[10]' does not provide a subscri…
244 …ror {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
246 #pragma omp target update to(test [1:1:1])
248 #pragma omp target update to(test [1, 2:1:1]) // cxx23-error {{expected ']'}} // expected-note {{'[…
249 …ror {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
251 #pragma omp target update to(test [1, 2:]) // cxx23-error {{expected ']'}} // expected-note {{'['}}…
252 …ror {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
254 #pragma omp target update to(test[1, 2 ::]) // cxx23-error {{expected ']'}} // expected-note {{'['}…
255 …ror {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}
257 #pragma omp target update to(test[]) // cxx23-error {{type 'int[10]' does not provide a subscript o…
258 …ror {{expected at least one 'to' clause or 'from' clause specified to '#pragma omp target update'}}