aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-19 10:06:57 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-19 10:06:57 +0000
commitb01312ab9760109353846c6fac3e0d135b7842b6 (patch)
treec8259597b50b2bdd2bd154575f5a261cfc818cae /numeric.c
parent5a213ee2e2df26df525877f5e45012aaab931b5f (diff)
downloadruby-b01312ab9760109353846c6fac3e0d135b7842b6.tar.gz
* numeric.c (fix_cmp): use rb_big_cmp if x is Fixnum and y is Bignum.
rb_big_cmp handles such case smartly with big_norm. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54193 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index 178dbe1f02..53af5c5666 100644
--- a/numeric.c
+++ b/numeric.c
@@ -3425,7 +3425,7 @@ fix_cmp(VALUE x, VALUE y)
return INT2FIX(-1);
}
else if (RB_TYPE_P(y, T_BIGNUM)) {
- return rb_big_cmp(rb_int2big(FIX2LONG(x)), y);
+ return rb_big_cmp(y, x);
}
else if (RB_TYPE_P(y, T_FLOAT)) {
return rb_integer_float_cmp(x, y);