summaryrefslogtreecommitdiff
path: root/mjit.c
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-14 05:52:14 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-04-14 05:52:14 +0000
commitd636809c057432e8d42abe30c6c6785eb0721d77 (patch)
treef66216e522e00a41eb6383c78e8342fde23db2df /mjit.c
parenta1b5d20068a9b1859b383b249e510cd33d196e4a (diff)
Revert "Try to set false explicitly"
This reverts commit a1b5d20068a9b1859b383b249e510cd33d196e4a. Revert "Revert "Skip recompiling tests on i686 Linux"" This reverts commit 7b88a9207b97b94bc3c3be35084c742296f4aff2. Revert "Simplify matrix for debugging" This reverts commit e85d6c5c5e62dde37c6f6ffdb7125b9008b9ebfa. Sorry, these 3 commits were under debugging in https://github.com/ruby/ruby/pull/2129 but accidentally merged by using `git svn dcommit` instead of `git push` to the topic branch :bow: git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67538 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'mjit.c')
-rw-r--r--mjit.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/mjit.c b/mjit.c
index ebe7f9e767..4fa9c82468 100644
--- a/mjit.c
+++ b/mjit.c
@@ -307,12 +307,8 @@ mjit_add_iseq_to_process(const rb_iseq_t *iseq, const struct rb_mjit_compile_inf
iseq->body->jit_func = (mjit_func_t)NOT_READY_JIT_ISEQ_FUNC;
create_unit(iseq);
- if (compile_info != NULL) {
+ if (compile_info != NULL)
iseq->body->jit_unit->compile_info = *compile_info;
- } else {
- iseq->body->jit_unit->compile_info.disable_ivar_cache = false;
- iseq->body->jit_unit->compile_info.disable_send_cache = false;
- }
if (iseq->body->jit_unit == NULL)
// Failure in creating the unit.
return;