* math.c: SEGV is caused by implicit rb_to_float declaration

test_complexrational.rb: [BUG] at IA-64 architecture


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
takano32 2009-01-28 06:42:09 +00:00
Родитель 194d0afa95
Коммит c4e79b640b
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Wed Jan 28 15:24:11 2009 TAKANO Mitsuhiro (takano32) <tak@no32.tk>
* 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@fsij.org>
* ext/socket/init.c (socks_connect_blocking): moved from

1
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);\