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

ruby-changes:9916

From: yugui <ko1@a...>
Date: Mon, 12 Jan 2009 22:32:41 +0900 (JST)
Subject: [ruby-changes:9916] Ruby:r21457 (ruby_1_9_1): merges r21414 from trunk into ruby_1_9_1.

yugui	2009-01-12 22:32:15 +0900 (Mon, 12 Jan 2009)

  New Revision: 21457

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

  Log:
    merges r21414 from trunk into ruby_1_9_1.
    * cont.c (cont_restore_1): should not be inlined.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/cont.c

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 21456)
+++ ruby_1_9_1/ChangeLog	(revision 21457)
@@ -1,3 +1,7 @@
+Sat Jan 10 19:05:13 2009  Koichi Sasada  <ko1@a...>
+
+	* cont.c (cont_restore_1): should not be inlined.
+
 Fri Jan  9 13:20:08 2009  Hidetoshi NAGAI  <nagai@a...>
 
 	* ext/tk/lib/tk.rb: rescue abnormal Encoding.locale_charmap value.
Index: ruby_1_9_1/cont.c
===================================================================
--- ruby_1_9_1/cont.c	(revision 21456)
+++ ruby_1_9_1/cont.c	(revision 21457)
@@ -289,7 +289,7 @@
     }
 }
 
-NORETURN(static void cont_restore_1(rb_context_t *));
+NOINLINE(NORETURN(static void cont_restore_1(rb_context_t *)));
 
 static void
 cont_restore_1(rb_context_t *cont)

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

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