summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-18 09:44:37 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-18 09:44:37 +0000
commit213782d0718d6176e6cc5092c7d504736f2f4fe2 (patch)
tree34b35cce4b9f0b53f8b326f07b8a0e53c504c492 /compile.c
parent414c09015c99df91c1c229146b8e9ac5192c834f (diff)
ibf_dump_object_unsupported marked as NORETURN
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/compile.c b/compile.c
index 1dfbef52e3..7b3bd00137 100644
--- a/compile.c
+++ b/compile.c
@@ -8828,6 +8828,8 @@ struct ibf_object_symbol {
#define IBF_OBJHEADER(offset) (struct ibf_object_header *)(load->buff + (offset))
#define IBF_OBJBODY(type, offset) (type *)(load->buff + sizeof(struct ibf_object_header) + (offset))
+NORETURN(static void ibf_dump_object_unsupported(struct ibf_dump *dump, VALUE obj));
+
static void
ibf_dump_object_unsupported(struct ibf_dump *dump, VALUE obj)
{