fix(library/compiler/llnf): missing mk_let

This commit is contained in:
Leonardo de Moura 2018-10-29 11:48:14 -07:00
parent 28c21b4340
commit 6fe50bd298

View file

@ -523,7 +523,8 @@ public:
}
expr operator()(expr const & e) {
return visit(e);
expr r = visit(e);
return mk_let(0, r);
}
};