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
In #1426, new methods for arithmetic overflow operations were added that rely on CBMC's new, more efficient operations: add_overflow_result, sub_overflow_result, and mul_overflow_result. There are still a few usages of the old methods, e.g. add_overflow in kani_compiler::codegen_cprover_gotoc::codegen::intrinsic::GotocCtx::codegen_offset. We should switch all the usages to the new methods, and delete the old methods.
The text was updated successfully, but these errors were encountered:
In #1426, new methods for arithmetic overflow operations were added that rely on CBMC's new, more efficient operations:
add_overflow_result
,sub_overflow_result
, andmul_overflow_result
. There are still a few usages of the old methods, e.g.add_overflow
inkani_compiler::codegen_cprover_gotoc::codegen::intrinsic::GotocCtx::codegen_offset
. We should switch all the usages to the new methods, and delete the old methods.The text was updated successfully, but these errors were encountered: