mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Use FIX2LONG to avoid unexpected exception
Though it won't happen in the real world in this context, FIX2INT may raise an exception and it cause to generate extra code.
This commit is contained in:
parent
d45a013a1a
commit
26843cbcd0
1 changed files with 1 additions and 1 deletions
|
@ -1461,7 +1461,7 @@ flo_cmp(VALUE x, VALUE y)
|
|||
if (RB_TYPE_P(y, T_FIXNUM) || RB_TYPE_P(y, T_BIGNUM)) {
|
||||
VALUE rel = rb_integer_float_cmp(y, x);
|
||||
if (FIXNUM_P(rel))
|
||||
return INT2FIX(-FIX2INT(rel));
|
||||
return LONG2FIX(-FIX2LONG(rel));
|
||||
return rel;
|
||||
}
|
||||
else if (RB_TYPE_P(y, T_FLOAT)) {
|
||||
|
|
Loading…
Reference in a new issue