Home | History | Annotate | Download | only in OpenMP

Lines Matching defs:s7

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