You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following program trips up handling of single-bit values vs booleans in the backend, such a single-bit value can be passed either as test to _sym_build_bool_to_bits or as constraint _sym_push_path_constraint, instead of a proper boolean value.
It is clearly related to type _Bool (which is part of the C standard, from stdbool.h), replacing _Bool by an integer type solves the problem.
The following program trips up handling of single-bit values vs booleans in the backend, such a single-bit value can be passed either as test to
_sym_build_bool_to_bits
or as constraint_sym_push_path_constraint
, instead of a proper boolean value.It is clearly related to type
_Bool
(which is part of the C standard, fromstdbool.h
), replacing_Bool
by an integer type solves the problem.This effectively leads to a type error, e.g., in the simple backend:
The text was updated successfully, but these errors were encountered: