Have mono::expr::Env use IdentIds::gen_unique

This commit is contained in:
Richard Feldman 2020-05-04 20:29:35 -04:00
parent 4b284fdca0
commit 2904f29c36
2 changed files with 17 additions and 20 deletions

View file

@ -1121,7 +1121,7 @@ fn decide_to_branching<'a>(
let condition = boolean_all(env.arena, tests);
let branch_symbol = env.fresh_symbol();
let branch_symbol = env.unique_symbol();
let stores = [(branch_symbol, Layout::Builtin(Builtin::Bool), condition)];
let cond_layout = Layout::Builtin(Builtin::Bool);