aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-09 02:31:23 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-09 02:31:23 +0000
commitc56edb9a59488f5efb6b6cbe02ac9db10bc0e6d3 (patch)
tree13bb3e499ace099af85fe5679e763f5fba3a16de /bignum.c
parent35fde4da0bef35b1f0e240549ed3307a3f0c0fca (diff)
downloadruby-c56edb9a59488f5efb6b6cbe02ac9db10bc0e6d3.tar.gz
revert RB_FIXABLE related changesets [Bug #13288][Bug #13293][Bug #13294]
This commit is auto-generated using following command: svn diff -r57807:57788 include internal.h bignum.c numeric.c compile.c insns.def object.c sprintf.c | patch -p0 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57818 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index 0e15e58c12..8c723300f4 100644
--- a/bignum.c
+++ b/bignum.c
@@ -3184,13 +3184,15 @@ rb_int2big(SIGNED_VALUE n)
VALUE
rb_uint2inum(VALUE n)
{
- return ULONG2NUM(n);
+ if (POSFIXABLE(n)) return LONG2FIX(n);
+ return rb_uint2big(n);
}
VALUE
rb_int2inum(SIGNED_VALUE n)
{
- return LONG2NUM(n);
+ if (FIXABLE(n)) return LONG2FIX(n);
+ return rb_int2big(n);
}
void