Skip to content
Closed
Prev Previous commit
Next Next commit
Missed one
  • Loading branch information
ShaharNaveh committed Nov 29, 2025
commit 3a01e053c46c0ee61c587324efb49ad2e1164c41
2 changes: 1 addition & 1 deletion crates/jit/src/instructions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ impl<'a, 'b> FunctionCompiler<'a, 'b> {
self.builder.ins().jump(target_block, &[]);
Ok(())
}
Instruction::LoadConst { idx } => {
Instruction::LoadConst(idx) => {
let val = self
.prepare_const(bytecode.constants[idx.get(arg) as usize].borrow_constant())?;
self.stack.push(val);
Expand Down
Loading