diff options
author | Alan Wu <[email protected]> | 2023-10-05 16:40:27 -0400 |
---|---|---|
committer | Alan Wu <[email protected]> | 2023-10-05 16:40:27 -0400 |
commit | 07a7c4bdaf27b80a8d791032986539d5188804c6 (patch) | |
tree | bf3600658175ba2403047981e2f90ed8ba4f69bb /yjit.c | |
parent | 41a6e4bdf9738e2cf1ea356422a429efeeb5a8f0 (diff) |
YJIT: Remove duplicate cfp->iseq accessor
Diffstat (limited to 'yjit.c')
-rw-r--r-- | yjit.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -798,13 +798,6 @@ rb_set_cfp_sp(struct rb_control_frame_struct *cfp, VALUE *sp) cfp->sp = sp; } -rb_iseq_t * -rb_cfp_get_iseq(struct rb_control_frame_struct *cfp) -{ - // TODO(alan) could assert frame type here to make sure that it's a ruby frame with an iseq. - return (rb_iseq_t*)cfp->iseq; -} - VALUE rb_get_cfp_self(struct rb_control_frame_struct *cfp) { |