diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-14 11:50:52 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-10-14 11:50:52 +0000 |
commit | 3ac55870aa6c88f55b651221caea714dee502056 (patch) | |
tree | ad295562d8f10bd71a1e638d5a0f8bec8c216019 /tool | |
parent | 589d80e7e337f166777d8f99f190a45013e6f050 (diff) | |
download | ruby-3ac55870aa6c88f55b651221caea714dee502056.tar.gz |
_mjit_compile_getivar.erb: we may not say receiver [ci skip]
for instance variable access, unlike method call.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rw-r--r-- | tool/ruby_vm/views/_mjit_compile_getivar.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/ruby_vm/views/_mjit_compile_getivar.erb b/tool/ruby_vm/views/_mjit_compile_getivar.erb index da45d3715b..934ea4773b 100644 --- a/tool/ruby_vm/views/_mjit_compile_getivar.erb +++ b/tool/ruby_vm/views/_mjit_compile_getivar.erb @@ -14,7 +14,7 @@ MAYBE_UNUSED(<%= ope.fetch(:decl) %>) = (<%= ope.fetch(:type) %>)operands[<%= i %>]; % end % -% # compiler: Consider receiver as T_OBJECT if ic->ic_serial is set +% # compiler: Consider cfp->self as T_OBJECT if ic->ic_serial is set if (ic->ic_serial) { % # JIT: optimize away motion of sp and pc. This path does not call rb_warning() and so it's always leaf and not `handles_sp`. % # <%= render 'mjit_compile_pc_and_sp', locals: { insn: insn } -%> |