Lines Matching full:vectors

131 …sel = c ? ss8 : fs8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in e…  in f()
132 …sel = c ? fs8 : ss8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in e… in f()
134 …sel = c ? gs8 : ss8; // expected-error {{cannot combine GNU and SVE vectors in expression, result … in f()
135 …sel = c ? ss8 : gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result … in f()
137 …sel = c ? gs8 : fs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result … in f()
138 …sel = c ? fs8 : gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result … in f()
141 …ss8 = ss8 + fs8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expre… in f()
142 …ss8 = ss8 + gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()
144 …fs8 = fs8 + ss8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expre… in f()
145 …fs8 = fs8 + gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()
147 …gs8 = gs8 + ss8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()
148 …gs8 = gs8 + fs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()
150 …ss8 += fs8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expression… in f()
151 …ss8 += gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is ambigu… in f()
153 …fs8 += ss8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expression… in f()
154 …fs8 += gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is ambigu… in f()
156 …gs8 += ss8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is ambigu… in f()
157 …gs8 += fs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is ambigu… in f()
159 …ss8 = ss8 == fs8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expr… in f()
160 …ss8 = ss8 == gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is … in f()
162 …fs8 = fs8 == ss8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expr… in f()
163 …fs8 = fs8 == gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is … in f()
165 …gs8 = gs8 == ss8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is … in f()
166 …gs8 = gs8 == fs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is … in f()
168 …ss8 = ss8 & fs8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expre… in f()
169 …ss8 = ss8 & gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()
171 …fs8 = fs8 & ss8; // expected-error {{cannot combine fixed-length and sizeless SVE vectors in expre… in f()
172 …fs8 = fs8 & gs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()
174 …gs8 = gs8 & ss8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()
175 …gs8 = gs8 & fs8; // expected-error {{cannot combine GNU and SVE vectors in expression, result is a… in f()