From 3b51b2fa96e05c77f61a0dacec685a98c12e7027 Mon Sep 17 00:00:00 2001 From: ktsj Date: Sat, 23 Jun 2018 04:45:57 +0000 Subject: vm.c: fix typo in function name git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index 4827a3093c..e43700c404 100644 --- a/vm.c +++ b/vm.c @@ -1789,7 +1789,7 @@ hook_before_rewind(rb_execution_context_t *ec, const rb_control_frame_t *cfp, in */ static inline VALUE -vm_exce_handle_exception(rb_execution_context_t *ec, enum ruby_tag_type state, +vm_exec_handle_exception(rb_execution_context_t *ec, enum ruby_tag_type state, VALUE errinfo, VALUE *initial); MJIT_FUNC_EXPORTED VALUE @@ -1811,7 +1811,7 @@ vm_exec(rb_execution_context_t *ec, int mjit_enable_p) else { result = ec->errinfo; rb_ec_raised_reset(ec, RAISED_STACKOVERFLOW); - while ((result = vm_exce_handle_exception(ec, state, result, &initial)) == Qundef) { + while ((result = vm_exec_handle_exception(ec, state, result, &initial)) == Qundef) { /* caught a jump, exec the handler */ result = vm_exec_core(ec, initial); vm_loop_start: @@ -1826,7 +1826,7 @@ vm_exec(rb_execution_context_t *ec, int mjit_enable_p) } static inline VALUE -vm_exce_handle_exception(rb_execution_context_t *ec, enum ruby_tag_type state, +vm_exec_handle_exception(rb_execution_context_t *ec, enum ruby_tag_type state, VALUE errinfo, VALUE *initial) { struct vm_throw_data *err = (struct vm_throw_data *)errinfo; -- cgit v1.2.3