summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorAlan Wu <[email protected]>2024-04-19 12:47:25 -0400
committerGitHub <[email protected]>2024-04-19 16:47:25 +0000
commitc8783441952217c18e523749c821f82cd7e5d222 (patch)
treeae668b335308723830fecaa6f0cf3ee159741b21 /vm.c
parent2e80ceb6ff5be3ccb710006aa87e27f2f564fdd0 (diff)
Revert "YJIT: Optimize local variables when EP == BP" (#10584)
This reverts commit 4cc58ea0b865f2fd20f1e881ddbd4c4fab0b072c. Since the change landed call-threshold=1 CI runs have been timing out. There has also been `verify-ctx` violations. Revert for now while we debug.
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/vm.c b/vm.c
index 0b3edea58c..9bcde9ef2f 100644
--- a/vm.c
+++ b/vm.c
@@ -1007,11 +1007,6 @@ vm_make_env_each(const rb_execution_context_t * const ec, rb_control_frame_t *co
}
#endif
- // Invalidate JIT code that assumes cfp->ep == vm_base_ptr(cfp).
- if (env->iseq) {
- rb_yjit_invalidate_ep_is_bp(env->iseq);
- }
-
return (VALUE)env;
}