[前][次][番号順一覧][スレッド一覧]

ruby-changes:49793

From: shyouhei <ko1@a...>
Date: Thu, 18 Jan 2018 19:01:41 +0900 (JST)
Subject: [ruby-changes:49793] shyouhei:r61913 (trunk): ibf_dump_object_unsupported marked as NORETURN

shyouhei	2018-01-18 18:44:37 +0900 (Thu, 18 Jan 2018)

  New Revision: 61913

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=61913

  Log:
    ibf_dump_object_unsupported marked as NORETURN

  Modified files:
    trunk/compile.c
Index: compile.c
===================================================================
--- compile.c	(revision 61912)
+++ compile.c	(revision 61913)
@@ -8828,6 +8828,8 @@ struct ibf_object_symbol { https://github.com/ruby/ruby/blob/trunk/compile.c#L8828
 #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)
 {

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]