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

ruby-changes:10269

From: takano32 <ko1@a...>
Date: Wed, 28 Jan 2009 15:42:43 +0900 (JST)
Subject: [ruby-changes:10269] Ruby:r21813 (trunk): * math.c: SEGV is caused by implicit rb_to_float declaration

takano32	2009-01-28 15:42:09 +0900 (Wed, 28 Jan 2009)

  New Revision: 21813

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

  Log:
    * math.c: SEGV is caused by implicit rb_to_float declaration
      	  test_complexrational.rb: [BUG] at IA-64 architecture

  Modified files:
    trunk/ChangeLog
    trunk/math.c

Index: math.c
===================================================================
--- math.c	(revision 21812)
+++ math.c	(revision 21813)
@@ -15,6 +15,7 @@
 
 VALUE rb_mMath;
 
+extern VALUE rb_to_float(VALUE val);
 #define Need_Float(x) (x) = rb_to_float(x)
 #define Need_Float2(x,y) do {\
     Need_Float(x);\
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 21812)
+++ ChangeLog	(revision 21813)
@@ -1,3 +1,8 @@
+Wed Jan 28 15:24:11 2009  TAKANO Mitsuhiro (takano32)  <tak@n...>
+
+	* math.c: SEGV is caused by implicit rb_to_float declaration
+	  test_complexrational.rb: [BUG] in IA-64 architecture
+
 Tue Jan 27 20:02:07 2009  Tanaka Akira  <akr@f...>
 
 	* ext/socket/init.c (socks_connect_blocking): moved from

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

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