diff options
author | Alan Wu <[email protected]> | 2024-04-19 12:47:25 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-19 16:47:25 +0000 |
commit | c8783441952217c18e523749c821f82cd7e5d222 (patch) | |
tree | ae668b335308723830fecaa6f0cf3ee159741b21 /vm.c | |
parent | 2e80ceb6ff5be3ccb710006aa87e27f2f564fdd0 (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.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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; } |