Skip to content

Commit 153a03a

Browse files
committed
more jit fixes
1 parent 4cbf506 commit 153a03a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/jit/tests/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ impl StackMachine {
9999
Instruction::LoadNameAny(idx) => self
100100
.stack
101101
.push(StackValue::String(names[idx.get(arg) as usize].clone())),
102-
Instruction::StoreLocal(idx) => {
102+
Instruction::StoreName(idx) => {
103103
let idx = idx.get(arg);
104104
self.locals
105105
.insert(names[idx as usize].clone(), self.stack.pop().unwrap());

0 commit comments

Comments
 (0)