Lines Matching full:incompatible

15 …v1 = v2; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' val…  in test1()
16 …v1 = v3; // expected-error {{assigning to 'v2s' (vector of 2 'int' values) from incompatible type … in test1()
17 …v1 = v4; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' val… in test1()
18 …v1 = v5; // expected-warning {{incompatible vector types assigning to 'v2s' (vector of 2 'int' val… in test1()
20 …v2 = v1; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned… in test1()
21 …d-error {{assigning to 'v2u' (vector of 2 'unsigned int' values) from incompatible type 'v1s' (vec… in test1()
22 …v2 = v4; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned… in test1()
23 …v2 = v5; // expected-warning {{incompatible vector types assigning to 'v2u' (vector of 2 'unsigned… in test1()
25 …v3 = v1; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type '… in test1()
26 …v3 = v2; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type '… in test1()
27 …v3 = v4; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type '… in test1()
28 …v3 = v5; // expected-error {{assigning to 'v1s' (vector of 1 'int' value) from incompatible type '… in test1()
30 …v4 = v1; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' v… in test1()
31 …v4 = v2; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' v… in test1()
32 …v4 = v3; // expected-error {{assigning to 'v2f' (vector of 2 'float' values) from incompatible typ… in test1()
33 …v4 = v5; // expected-warning {{incompatible vector types assigning to 'v2f' (vector of 2 'float' v… in test1()
35 …v5 = v1; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' … in test1()
36 …v5 = v2; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' … in test1()
37 …v5 = v3; // expected-error {{assigning to 'v4ss' (vector of 4 'short' values) from incompatible ty… in test1()
38 …v5 = v4; // expected-warning {{incompatible vector types assigning to 'v4ss' (vector of 4 'short' … in test1()
52 …test3a(src); // expected-warning {{incompatible pointer types passing 'const unsigned int *' to p… in test3()