Home | History | Annotate | Download | only in OpenMP

Lines Matching defs:s7

52 struct S7 {
80 S7 s7;
108 #pragma omp target update from(s7.i, s7.a[:3])
109 #pragma omp target update from(s7.s6[1].aa[0:5])
110 #pragma omp target update from(x, s7.s6[:5].aa[6]) // expected-error {{OpenMP array section is not allowed here}}
111 #pragma omp target update from(x, s7.s6[:5].aa[:6]) // expected-error {{OpenMP array section is not allowed here}}
112 #pragma omp target update from(s7.p[:10])
113 #pragma omp target update from(x, s7.bfa) // expected-error {{bit fields cannot be used to specify storage in a 'from' clause}}
114 #pragma omp target update from(x, s7.p[:]) // expected-error {{section length is unspecified and cannot be inferred because subscripted value is not an array}}
115 #pragma omp target data map(to: s7.i)
117 #pragma omp target update from(s7.x)
136 S7 s7;
162 #pragma omp target update from(s7.i, s7.a[:3])
163 #pragma omp target update from(s7.s6[1].aa[0:5])
164 #pragma omp target update from(x, s7.s6[:5].aa[6]) // expected-error {{OpenMP array section is not allowed here}}
165 #pragma omp target update from(x, s7.s6[:5].aa[:6]) // expected-error {{OpenMP array section is not allowed here}}
166 #pragma omp target update from(s7.p[:10])
167 #pragma omp target update from(x, s7.bfa) // expected-error {{bit fields cannot be used to specify storage in a 'from' clause}}
168 #pragma omp target update from(x, s7.p[:]) // expected-error {{section length is unspecified and cannot be inferred because subscripted value is not an array}}
169 #pragma omp target data map(to: s7.i)
171 #pragma omp target update from(s7.x)