From 8cdc370c3d8dd4b97fa8d33a96d6e2079cba0e6d Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 24 May 2005 14:52:05 +0000 Subject: * numeric.c (fix_pow): support Fixnum ** Float case directly without coercing. [ruby-talk:142697] [ruby-talk:143054] * ruby.c (require_libraries): caused SEGV when continuation jumped in to the required library code. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8515 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'numeric.c') diff --git a/numeric.c b/numeric.c index 65d9d5cb1..e5a03e1a8 100644 --- a/numeric.c +++ b/numeric.c @@ -2196,6 +2196,9 @@ fix_pow(x, y) return rb_big_pow(rb_int2big(a), y); } return rb_float_new(pow((double)a, (double)b)); + } else if (TYPE(y) == T_FLOAT) { + long a = FIX2LONG(x); + return rb_float_new(pow((double)a, RFLOAT(y)->value)); } return rb_num_coerce_bin(x, y); } -- cgit