Home | History | Annotate | Download | only in Sema

Lines Matching refs:v2f

5 typedef float v2f __attribute__ ((vector_size(8)));
12 v2f v4;
17 v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' from 'v2f'}}
22 v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' from 'v2f'}}
27 v3 = v4; // expected-error {{assigning to 'v1s' from incompatible type 'v2f'}}
30 v4 = v1; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v2s'}}
31 v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v2u'}}
32 v4 = v3; // expected-error {{assigning to 'v2f' from incompatible type 'v1s'}}
33 v4 = v5; // expected-warning {{incompatible vector types assigning to 'v2f' from 'v4ss'}}
38 v5 = v4; // expected-warning {{incompatible vector types assigning to 'v4ss' from 'v2f'}}