2 stm8 and pdk code generator hang on shift by negative literal
3 type: char, signed char, unsigned char, signed int, unsigned int, signed long, unsigned long, signed long long, unsigned long long
7 #pragma disable_warning 259
15 if (((x
>> -1))) // Undefined behaviour, but we should be fine if this is never executed at runtime.
21 if (((x
<< -1))) // Undefined behaviour, but we should be fine if this is never executed at runtime.