fix(library/compiler/llnf): missing mk_let
This commit is contained in:
parent
28c21b4340
commit
6fe50bd298
1 changed files with 2 additions and 1 deletions
|
|
@ -523,7 +523,8 @@ public:
|
|||
}
|
||||
|
||||
expr operator()(expr const & e) {
|
||||
return visit(e);
|
||||
expr r = visit(e);
|
||||
return mk_let(0, r);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue