summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-18 09:44:48 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-18 09:44:48 +0000
commitedb413ff352ca7a406ae998790e5b70782c0f27d (patch)
tree24aa758066fdac3936ff72e0fd7f7e6d55d9e060
parent0c932244fe05e1e44dcff3d832237b784ac58420 (diff)
vm_stackoverflow marked as NORETURN
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--vm_insnhelper.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index f68d34d93a..ebf31aa244 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -46,6 +46,8 @@ ec_stack_overflow(rb_execution_context_t *ec, int setup)
EC_JUMP_TAG(ec, TAG_RAISE);
}
+NORETURN(static void vm_stackoverflow(void));
+
static void
vm_stackoverflow(void)
{