diff options
author | Takashi Kokubun <[email protected]> | 2022-11-22 17:21:26 -0800 |
---|---|---|
committer | Alan Wu <[email protected]> | 2022-11-23 11:59:50 -0500 |
commit | 9c36de3c484f104a59033d75855864853c4325c4 (patch) | |
tree | 61bc89f433cfbb18e852da0d0ff7a2a63bf73621 /yjit/src | |
parent | fe2bed6778962a083fbba7bbd6d2aa4cc8b62768 (diff) |
YJIT: Stop passing target1 to gen_return_branch
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6794
Diffstat (limited to 'yjit/src')
-rw-r--r-- | yjit/src/codegen.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yjit/src/codegen.rs b/yjit/src/codegen.rs index e14a276f36..f2aad629fc 100644 --- a/yjit/src/codegen.rs +++ b/yjit/src/codegen.rs @@ -5066,8 +5066,8 @@ fn gen_send_iseq( ocb, return_block, &return_ctx, - Some(return_block), - Some(&return_ctx), + None, + None, gen_return_branch, ); |