mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 21:14:23 +02:00
vm.c: fix typo in function name
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63726 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
31d7e56b27
commit
3b51b2fa96
1 changed files with 3 additions and 3 deletions
6
vm.c
6
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue