From be6266832e42da504cc7d01e86747b4e591f8c63 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Wed, 16 Sep 2020 18:58:12 -0700 Subject: [PATCH] Remove dbg! macro calls Signed-off-by: Alek Ratzloff --- src/compile/basic_block.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile/basic_block.rs b/src/compile/basic_block.rs index 1ed69e7..13a5cdc 100644 --- a/src/compile/basic_block.rs +++ b/src/compile/basic_block.rs @@ -114,7 +114,7 @@ impl BasicBlockList { } // this inserts a "dummy" mapping for the last block index because it will point out of bounds let last_index = entry_map.len(); - entry_map.insert(dbg!(last_block_index), dbg!(last_index)); + entry_map.insert(last_block_index, last_index); // second pass: update blocks in-place with their newly mapped addresses blocks .into_iter()