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()