[Eva] Fixes the interpretation of logic casts from integer to _Bool.
The function Cvalue.V.cast_int_to_int is unsound here, as conversions to the _Bool type obey a different rule. This case never happens in the C AST, as conversions (_Bool)x are translated into (_Bool)(x != 0).
Please register or sign in to comment