fix(compiler/preprocess_rec): add extra comp_irrelevant step

This commit is contained in:
Leonardo de Moura 2016-05-04 17:17:45 -07:00
parent 37bc76ff09
commit 2e970d67ba

View file

@ -113,6 +113,7 @@ public:
v = eta_expand(m_env, v);
v = simp_pr1_rec(m_env, v);
v = inline_simple_definitions(m_env, v);
v = mark_comp_irrelevant_subterms(m_env, v);
v = lambda_lifting(m_env, v, m_aux_decls, d.is_trusted());
display(v);
// TODO(Leo)