Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion regression/cbmc/Bool/bool2.desc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CORE no-new-smt
CORE
bool2.c

^EXIT=0$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/Bool/bool3.desc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CORE no-new-smt
CORE
bool3.c
--json-ui
^EXIT=10$
Expand Down
2 changes: 1 addition & 1 deletion regression/cbmc/c99_Bool/test.desc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CORE no-new-smt
CORE
main.c
--function foo
^EXIT=0$
Expand Down
2 changes: 2 additions & 0 deletions src/solvers/smt2_incremental/convert_expr_to_smt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ extension_for_type(const typet &type)
return smt_bit_vector_theoryt::zero_extend;
if(can_cast_type<pointer_typet>(type))
return smt_bit_vector_theoryt::zero_extend;
if(can_cast_type<c_bool_typet>(type))
return smt_bit_vector_theoryt::zero_extend;
UNREACHABLE;
}

Expand Down
Loading