summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-24 14:43:40 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-24 14:43:40 +0000
commit63f51f528312c1c534bdc8418520299781145e6a (patch)
tree96920f18314f44b28689480262284a20e1a11ef0 /tool
parent83c9263b85d8ebd8db446f9a339a0231a0f0d3d5 (diff)
transform_mjit_header.rb: fix performance regression
on r64031. Compiling vm_search_method_slowpath is very slow. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64034 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rw-r--r--tool/transform_mjit_header.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/transform_mjit_header.rb b/tool/transform_mjit_header.rb
index 74d4e06232..848512c58a 100644
--- a/tool/transform_mjit_header.rb
+++ b/tool/transform_mjit_header.rb
@@ -32,7 +32,7 @@ module MJITHeader
]
IGNORED_FUNCTIONS = [
- 'vm_search_method_slowpath', # This increases the time to compile when inlined. So we use it as external function.
+ 'rb_vm_search_method_slowpath', # This increases the time to compile when inlined. So we use it as external function.
'rb_equal_opt', # Not used from VM and not compilable
]