aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.h
diff options
context:
space:
mode:
authork0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-18 12:48:28 +0000
committerk0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-09-18 12:48:28 +0000
commit62327bb6ff38699f8f4b83aad1cfe9244902f787 (patch)
tree396478c12ec7012815ed3783a28f9bc708b0ab6e /vm_insnhelper.h
parent742df62eb724ba988c9c880771e0aa4053ff3eac (diff)
downloadruby-62327bb6ff38699f8f4b83aad1cfe9244902f787.tar.gz
vm_insnhelper.h: rename CI_SET_FASTPATH to CC_SET_FASTPATH
because it's actually setting fastpath to cc instead of ci since r51903. vm_insnhelper.c: ditto mjit_compile.c: ditto tool/ruby_vm/views/_mjit_compile_send.erb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_insnhelper.h')
-rw-r--r--vm_insnhelper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_insnhelper.h b/vm_insnhelper.h
index 56e63cd841..e44d91ec34 100644
--- a/vm_insnhelper.h
+++ b/vm_insnhelper.h
@@ -177,7 +177,7 @@ enum vm_regan_acttype {
* because inline method cache does not care about receiver.
*/
-#define CI_SET_FASTPATH(cc, func, enabled) do { \
+#define CC_SET_FASTPATH(cc, func, enabled) do { \
if (LIKELY(enabled)) ((cc)->call = (func)); \
} while (0)