8000 ZJIT: Add newrange support by st0012 · Pull Request #13505 · ruby/ruby · GitHub
[go: up one dir, main page]

Skip to content

ZJIT: Add newrange support #13505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 5, 2025
Merged
Changes from 1 commit
Commits
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
Address other feedback
  • Loading branch information
st0012 committed Jun 4, 2025
commit 207ee936795caea630753bfbfec6027d58dce09c
2 changes: 1 addition & 1 deletion zjit/src/hir.rs
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ impl Function {
}
NewHash { elements: found_elements, state: find!(state) }
}
&NewRange { low, high, flag, state } => NewRange { low: find!(low), high: find!(high), flag, state },
&NewRange { low, high, flag, state } => NewRange { low: find!(low), high: find!(high), flag, state: find!(state) },
ArrayMax { elements, state } => ArrayMax { elements: find_vec!(*elements), state: find!(*state) },
&GetIvar { self_val, id, state } => GetIvar { self_val: find!(self_val), id, state },
&SetIvar { self_val, id, val, state } => SetIvar { self_val: find!(self_val), id, val, state },
Expand Down
Loading
0