Remove dbg! macro calls

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2020-09-16 18:58:12 -07:00
parent e72cbe2b8c
commit be6266832e

View File

@@ -114,7 +114,7 @@ impl BasicBlockList {
} }
// this inserts a "dummy" mapping for the last block index because it will point out of bounds // this inserts a "dummy" mapping for the last block index because it will point out of bounds
let last_index = entry_map.len(); 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 // second pass: update blocks in-place with their newly mapped addresses
blocks blocks
.into_iter() .into_iter()