diff options
author | takano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-28 06:42:09 +0000 |
---|---|---|
committer | takano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-28 06:42:09 +0000 |
commit | ecaf2e46556d8f7a9c7f12d73095def8c02ebcd2 (patch) | |
tree | 8910e0dad843f4953ed7ee26ef0f15ec43f86bce | |
parent | a45ed4125155b7bded96bda106a6b0cc21d7760e (diff) | |
download | ruby-ecaf2e46556d8f7a9c7f12d73095def8c02ebcd2.tar.gz ruby-ecaf2e46556d8f7a9c7f12d73095def8c02ebcd2.tar.xz ruby-ecaf2e46556d8f7a9c7f12d73095def8c02ebcd2.zip |
* 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
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | math.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -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 @@ -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);\ |