summaryrefslogtreecommitdiff
path: root/vm_insnhelper.h
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-25 23:36:25 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-26 09:39:53 +0900
commit292230cbf926e9892596ea37fd4567f0c49ab73c (patch)
treec16b63cb64dc6c7ee6c1f2a118fbd968198c9438 /vm_insnhelper.h
parent73cd4951de20bf989747013b1e62a202f12ac2d2 (diff)
Fixed leaked global symbols
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4003
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 56c4b96458..18e7056303 100644
--- a/vm_insnhelper.h
+++ b/vm_insnhelper.h
@@ -153,7 +153,7 @@ CC_SET_FASTPATH(const struct rb_callcache *cc, vm_call_handler func, bool enable
*canary = Qfalse; /* cleanup */ \
} \
else { \
- vm_canary_is_found_dead(insn, *canary); \
+ rb_vm_canary_is_found_dead(insn, *canary); \
} \
}
#else