Home | History | Annotate | Download | only in Sema

Lines Matching full:v2u

2 typedef unsigned int v2u __attribute__ ((vector_size (8)));
10 v2u v2;
15 v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2u'}}
20 v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2s'}}
21 v2 = v3; // expected-error {{assigning to 'v2u' from incompatible type 'v1s'}}
22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2f'}}
23 v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v4ss'}}
26 v3 = v2; // expected-error {{assigning to 'v1s' from incompatible type 'v2u'}}
31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v2u'}}
36 v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' from 'v2u'}}