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

ruby-changes:30935

From: ktsj <ko1@a...>
Date: Sun, 22 Sep 2013 20:57:56 +0900 (JST)
Subject: [ruby-changes:30935] ktsj:r43014 (trunk): * vm_insnhelper.c (vm_make_proc_with_iseq): fix bug message.

ktsj	2013-09-22 20:57:50 +0900 (Sun, 22 Sep 2013)

  New Revision: 43014

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43014

  Log:
    * vm_insnhelper.c (vm_make_proc_with_iseq): fix bug message.
      This is follow up to changes in r42637.

  Modified files:
    trunk/ChangeLog
    trunk/vm_insnhelper.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 43013)
+++ ChangeLog	(revision 43014)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sun Sep 22 20:55:20 2013  Kazuki Tsujimoto  <kazuki@c...>
+
+	* vm_insnhelper.c (vm_make_proc_with_iseq): fix bug message.
+	  This is follow up to changes in r42637.
+
 Sun Sep 22 20:35:38 2013  Kazuki Tsujimoto  <kazuki@c...>
 
 	* ext/-test-/tracepoint/tracepoint.c (Init_tracepoint): prevent from GC.
Index: vm_insnhelper.c
===================================================================
--- vm_insnhelper.c	(revision 43013)
+++ vm_insnhelper.c	(revision 43014)
@@ -2405,7 +2405,7 @@ vm_make_proc_with_iseq(rb_iseq_t *blocki https://github.com/ruby/ruby/blob/trunk/vm_insnhelper.c#L2405
     rb_control_frame_t *cfp = rb_vm_get_ruby_level_next_cfp(th, th->cfp);
 
     if (cfp == 0) {
-	rb_bug("m_core_set_postexe: unreachable");
+	rb_bug("vm_make_proc_with_iseq: unreachable");
     }
 
     blockptr = RUBY_VM_GET_BLOCK_PTR_IN_CFP(cfp);

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

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