From ecaf2e46556d8f7a9c7f12d73095def8c02ebcd2 Mon Sep 17 00:00:00 2001 From: takano32 Date: Wed, 28 Jan 2009 06:42:09 +0000 Subject: * math.c: SEGV is caused by implicit rb_to_float declaration test_complexrational.rb: [BUG] at IA-64 architecture git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ math.c | 1 + 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 63284a9a2..47bf30200 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Jan 28 15:24:11 2009 TAKANO Mitsuhiro (takano32) + + * 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 * ext/socket/init.c (socks_connect_blocking): moved from diff --git a/math.c b/math.c index 63a386360..c7e79c1a8 100644 --- a/math.c +++ b/math.c @@ -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);\ -- cgit