diff --git a/src/api/api_bv.cpp b/src/api/api_bv.cpp index bb426373004..3ea5ba91810 100644 --- a/src/api/api_bv.cpp +++ b/src/api/api_bv.cpp @@ -227,6 +227,9 @@ Z3_ast Z3_API NAME(Z3_context c, unsigned i, Z3_ast n) { \ Z3_ast Z3_API Z3_mk_bvadd_no_underflow(Z3_context c, Z3_ast t1, Z3_ast t2) { Z3_TRY; RESET_ERROR_CODE(); + // l1 := t1 t1 + t2 y Z3_ast zero = Z3_mk_int(c, 0, Z3_get_sort(c, t1)); Z3_inc_ref(c, zero); Z3_ast minus_t2 = Z3_mk_bvneg(c, t2);