From c7d04c2a0008b46fe157ded7e666563910fa0060 Mon Sep 17 00:00:00 2001 From: Folkert Date: Sun, 25 Jul 2021 20:44:00 +0200 Subject: [PATCH] cleanup --- compiler/mono/src/borrow.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/compiler/mono/src/borrow.rs b/compiler/mono/src/borrow.rs index 74a013356f..d0c3aad97c 100644 --- a/compiler/mono/src/borrow.rs +++ b/compiler/mono/src/borrow.rs @@ -995,7 +995,6 @@ fn make_successor_mapping<'a>( } struct CallInfo<'a> { - // keys: MutSet<(Symbol, ProcLayout<'a>)>, keys: Vec<'a, Symbol>, } @@ -1009,13 +1008,6 @@ fn call_info_call<'a>(call: &crate::ir::Call<'a>, info: &mut CallInfo<'a>) { arg_layouts, .. } => { - let proc_layout = crate::ir::ProcLayout { - arguments: arg_layouts, - result: ret_layout, - }; - - //let key = (name, proc_layout); - // info.keys.insert(key); info.keys.push(name); } Foreign { .. } => {}