From 1cf0af636c7343d5764ca70cb23a05761df4457b Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 20 Nov 2018 03:03:02 +0000 Subject: mjit.c: fix typos [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65825 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- mjit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mjit.c') diff --git a/mjit.c b/mjit.c index 1578c961ae..91360e8e4c 100644 --- a/mjit.c +++ b/mjit.c @@ -745,7 +745,7 @@ skip_cleaning_object_files(struct rb_mjit_unit_list *list) /* No mutex for list, assuming MJIT worker does not exist yet since it's immediately after fork. */ list_for_each_safe(&list->head, unit, next, unode) { -#ifndef _MSC_VER /* Actualy mswin does not reach here since it doesn't have fork */ +#ifndef _MSC_VER /* Actually mswin does not reach here since it doesn't have fork */ if (unit->o_file) unit->o_file_inherited_p = TRUE; #endif @@ -763,7 +763,7 @@ skip_cleaning_object_files(struct rb_mjit_unit_list *list) call the JIT-ed code. But unfortunately current MJIT-generated code is process-specific. After the fork, - JIT-ed code created by parent Ruby process cannnot be used in child Ruby process + JIT-ed code created by parent Ruby process cannot be used in child Ruby process because the code could rely on inline cache values (ivar's IC, send's CC) which may vary between processes after fork or embed some process-specific addresses. -- cgit v1.2.3