Lines Matching refs:four_ints

21 FourInts four_ints;  variable
46 …(void)(four_ints ? four_ints : throw 1); // expected-error {{GNU vector conditional operand cannot… in Operands()
47 …(void)(four_ints ? throw 1 : four_ints); // expected-error {{GNU vector conditional operand cannot… in Operands()
48 …(void)(four_ints ?: throw 1); // expected-error {{GNU vector conditional operand cannot… in Operands()
49 …(void)(four_ints ? (void)1 : four_ints); // expected-error {{GNU vector conditional operand cannot… in Operands()
50 …(void)(four_ints ?: (void)1); // expected-error {{GNU vector conditional operand cannot… in Operands()
53 …(void)(four_ints ? two_ll : two_ll); // expected-error {{vector condition type 'FourIn… in Operands()
54 …(void)(four_ints ? four_ll : four_ll); // expected-error {{vector condition type 'FourIn… in Operands()
55 …(void)(four_ints ? two_doubles : two_doubles); // expected-error {{vector condition type 'FourIn… in Operands()
56 …(void)(four_ints ? four_doubles : four_doubles); // expected-error {{vector condition type 'FourIn… in Operands()
57 …(void)(four_ints ?: two_ints); // expected-error {{vector operands to the vector… in Operands()
58 …(void)(four_ints ?: four_doubles); // expected-error {{vector operands to the vector… in Operands()
61 …(void)(four_ints ? 3.0f : 3.0); // expected-error {{vector condition type 'FourInts' (vector of 4 … in Operands()
62 …(void)(four_ints ? 5ll : 5); // expected-error {{vector condition type 'FourInts' (vector of 4 … in Operands()
63 …(void)(four_ints ?: 3.0); // expected-error {{cannot convert between scalar type 'double' an… in Operands()
64 …(void)(four_ints ?: 5ll); // We allow this despite GCc not allowing this since we support in… in Operands()
70 …(void)(four_ints ? e : e); // expected-error {{enumeration type 'E' is no… in Operands()
71 …(void)(four_ints ? se : se); // expected-error {{enumeration type 'SE' is n… in Operands()
75 (void)(four_ints ? 3.0f : 5u); in Operands()
76 (void)(four_ints ? 3.0f : 5); in Operands()
83 (void)(four_ints ? 3.0f : us); in Operands()
84 (void)(four_ints ? 3.0f : sint); in Operands()
89 (void)(four_ints ? uss : shrt); // should be fine, since they get promoted to int. in Operands()
90 …(void)(four_ints ? shrt : shrt); //expected-error {{vector condition type 'FourInts' (vector of … in Operands()
93 …(void)(four_ints ? four_uints : four_floats); // expected-error {{vector operands to the vector co… in Operands()
94 …(void)(four_ints ? four_uints : four_ints); // expected-error {{vector operands to the vector co… in Operands()
95 …(void)(four_ints ? four_ints : four_uints); // expected-error {{vector operands to the vector co… in Operands()
98 (void)(four_ints ? four_uints : 3.0f); in Operands()
99 (void)(four_ints ? four_ints : 3.0f); in Operands()
105 (void)(four_ints ? four_floats : 3); // should work, ints can convert to floats. in Operands()
106 …(void)(four_ints ? four_uints : e); // expected-error {{cannot convert between scalar type 'E' an… in Operands()
107 …(void)(four_ints ? four_uints : se); // expected-error {{cannot convert between vector and non-sca… in Operands()
111 …(void)(four_ints ? four_floats : us); // expected-error {{cannot convert between scalar type 'u… in Operands()
112 …(void)(four_ints ? four_floats : sint); // expected-error {{cannot convert between scalar type 'i… in Operands()
173 all_dependent(four_ints, four_uints, four_doubles); // expected-note {{in instantiation of}} in Templates()
176 all_dependent(four_ints, four_uints, two_uints); // expected-note {{in instantiation of}} in Templates()
177 all_dependent(four_ints, four_uints, four_uints); in Templates()