diff --git a/crates/steel-core/src/steel_vm/vm.rs b/crates/steel-core/src/steel_vm/vm.rs index c460ec44b..79a9451c2 100644 --- a/crates/steel-core/src/steel_vm/vm.rs +++ b/crates/steel-core/src/steel_vm/vm.rs @@ -2064,10 +2064,6 @@ impl<'a> VmCore<'a> { // Otherwise, we're going to be copying the instruction _every_ time we iterate which is going to slow down the loop // We'd rather just reference the instruction and call it a day - if self.ip >= self.instructions.len() { - pretty_print_dense_instructions(&self.instructions); - } - let instr = self.instructions[self.ip]; match instr {