mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
Bugfix for fp.to_ieee_bv for unspecified input/output.
This commit is contained in:
parent
5463167a84
commit
176782d62b
5 changed files with 20 additions and 4 deletions
|
@ -107,6 +107,8 @@ br_status fpa_rewriter::mk_app_core(func_decl * f, unsigned num_args, expr * con
|
|||
SASSERT(num_args == 0); st = mk_to_sbv_unspecified(f, result); break;
|
||||
case OP_FPA_INTERNAL_TO_REAL_UNSPECIFIED:
|
||||
SASSERT(num_args == 0); st = mk_to_real_unspecified(result); break;
|
||||
case OP_FPA_INTERNAL_TO_IEEE_BV_UNSPECIFIED:
|
||||
SASSERT(num_args == 0); st = mk_to_ieee_bv_unspecified(f, result); break;
|
||||
|
||||
case OP_FPA_INTERNAL_BVWRAP:
|
||||
case OP_FPA_INTERNAL_BVUNWRAP:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue