Lines Matching defs:init_int8

92   svint8_t init_int8 = local_int8;
124 bool test_int8 = init_int8; // expected-error {{cannot initialize a variable of type 'bool' with an lvalue of type 'svint8_t'}}
126 int int_int8 = init_int8; // expected-error {{cannot initialize a variable of type 'int' with an lvalue of type 'svint8_t'}}
128 init_int8 = local_int8;
129 init_int8 = local_int16; // expected-error {{assigning to 'svint8_t' (aka '__SVInt8_t') from incompatible type 'svint16_t'}}
130 init_int8 = sel; // expected-error {{assigning to 'svint8_t' (aka '__SVInt8_t') from incompatible type 'int'}}
140 init_int8 = local_int8;
141 init_int8 = const_int8;
142 init_int8 = volatile_int8;
143 init_int8 = const_volatile_int8;
154 init_int8 = sel ? init_int8 : local_int8;
155 init_int8 = sel ? init_int8 : const_int8;
156 init_int8 = sel ? volatile_int8 : const_int8;
157 init_int8 = sel ? volatile_int8 : const_volatile_int8;
202 ++init_int8; // expected-error {{cannot increment value of type 'svint8_t'}}
203 init_int8++; // expected-error {{cannot increment value of type 'svint8_t'}}
204 --init_int8; // expected-error {{cannot decrement value of type 'svint8_t'}}
205 init_int8--; // expected-error {{cannot decrement value of type 'svint8_t'}}
206 !init_int8; // expected-error {{invalid argument type 'svint8_t'}}
207 *init_int8; // expected-error {{indirection requires pointer operand}}
208 __real init_int8; // expected-error {{invalid type 'svint8_t'}}
209 __imag init_int8; // expected-error {{invalid type 'svint8_t'}}
211 local_int8 &&init_int8; // expected-error {{invalid operands to binary expression}} expected-error {{not contextually convertible}}
212 local_int8 || init_int8; // expected-error {{invalid operands to binary expression}} expected-error {{not contextually convertible}}
421 svint8_t init_int8{local_int8};