Lines Matching refs:eight_bools
20 EightBools eight_bools; variable
47 …(void)(eight_bools || other_eight_bools); // expected-error@47 {{invalid operands to binary expres… in Operations()
48 …(void)(eight_bools && other_eight_bools); // expected-error@48 {{invalid operands to binary expres… in Operations()
49 …(void)(eight_bools + other_eight_bools); // expected-error@49 {{invalid operands to binary expres… in Operations()
50 …(void)(eight_bools - other_eight_bools); // expected-error@50 {{invalid operands to binary expres… in Operations()
51 …(void)(eight_bools * other_eight_bools); // expected-error@51 {{invalid operands to binary expres… in Operations()
52 …(void)(eight_bools << other_eight_bools); // expected-error@52 {{invalid operands to binary expres… in Operations()
53 …(void)(eight_bools >> other_eight_bools); // expected-error@53 {{invalid operands to binary expres… in Operations()
54 …(void)(eight_bools / other_eight_bools); // expected-error@54 {{invalid operands to binary expres… in Operations()
55 …(void)(eight_bools % other_eight_bools); // expected-error@55 {{invalid operands to binary expres… in Operations()
58 …(void)(eight_bools += other_eight_bools); // expected-error@58 {{invalid operands to binary expre… in Operations()
59 …(void)(eight_bools -= other_eight_bools); // expected-error@59 {{invalid operands to binary expre… in Operations()
60 …(void)(eight_bools *= other_eight_bools); // expected-error@60 {{invalid operands to binary expre… in Operations()
61 …(void)(eight_bools <<= other_eight_bools); // expected-error@61 {{invalid operands to binary expre… in Operations()
62 …(void)(eight_bools >>= other_eight_bools); // expected-error@62 {{invalid operands to binary expre… in Operations()
63 …(void)(eight_bools /= other_eight_bools); // expected-error@63 {{invalid operands to binary expre… in Operations()
64 …(void)(eight_bools %= other_eight_bools); // expected-error@64 {{invalid operands to binary expre… in Operations()
67 …(void)(eight_bools++); // expected-error@67 {{cannot increment value of type 'EightBools' (vector … in Operations()
68 …(void)(++eight_bools); // expected-error@68 {{cannot increment value of type 'EightBools' (vector … in Operations()
69 …(void)(eight_bools--); // expected-error@69 {{cannot decrement value of type 'EightBools' (vector … in Operations()
70 …(void)(--eight_bools); // expected-error@70 {{cannot decrement value of type 'EightBools' (vector … in Operations()
73 …(void)(eight_bools + eight_ints); // expected-error@73 {{invalid operands to binary expression ('E… in Operations()
74 …(void)(eight_ints - eight_bools); // expected-error@74 {{invalid operands to binary expression ('E… in Operations()
79 …(void)((long)eight_bools); // expected-error@79 {{C-style cast from vector 'EightBools' (vector of… in Conversions()
81 …(void)((char)eight_bools); // expected-error@81 {{C-style cast from vector 'EightBools' (vector of… in Conversions()
88 eight_bools.y = false; // expected-error@88 {{illegal vector component name ''y''}} in ElementRefs()
89 &eight_bools.z; // expected-error@89 {{illegal vector component name ''z''}} in ElementRefs()
90 foo(eight_bools.w); // expected-error@90 {{illegal vector component name ''w''}} in ElementRefs()
91 foo(eight_bools.wyx); // expected-error@91 {{illegal vector component name ''wyx''}} in ElementRefs()