Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More jit fixes
  • Loading branch information
ShaharNaveh committed Mar 2, 2026
commit cf22b78217653f5bf3cf03c18b2e490f36ac84ed
4 changes: 2 additions & 2 deletions crates/jit/tests/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ impl StackMachine {
Instruction::LoadName { namei } => self
.stack
.push(StackValue::String(names[namei.get(arg) as usize].clone())),
Instruction::StoreName(idx) => {
let idx = idx.get(arg);
Instruction::StoreName { namei } => {
let idx = namei.get(arg);
self.locals
.insert(names[idx as usize].clone(), self.stack.pop().unwrap());
}
Expand Down
Loading