1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

merges r21813 from trunk into ruby_1_9_1.

* 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/branches/ruby_1_9_1@21842 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2009-01-28 11:08:28 +00:00
parent 1efc4c1693
commit b82c3200a1
2 changed files with 6 additions and 0 deletions

View file

@ -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 03:23:43 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/mkmf.rb (create_makefile): should point correct path to

1
math.c
View file

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