Use RB_POSFIXABLE and RB_NEGFIXABLE to avoid cast introduced at r57793
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
72f8df158f
commit
d19d629eaa
@ -368,7 +368,7 @@ ntz_intptr(uintptr_t x)
|
|||||||
# define DL2NUM(x) LL2NUM(x)
|
# define DL2NUM(x) LL2NUM(x)
|
||||||
#elif defined(HAVE_INT128_T)
|
#elif defined(HAVE_INT128_T)
|
||||||
# define DLONG int128_t
|
# define DLONG int128_t
|
||||||
# define DL2NUM(x) (RB_FIXABLE(x) ? LONG2FIX(x) : rb_int128t2big(x))
|
# define DL2NUM(x) ((RB_POSFIXABLE(x) && RB_NEGFIXABLE(x)) ? LONG2FIX(x) : rb_int128t2big(x))
|
||||||
VALUE rb_int128t2big(int128_t n);
|
VALUE rb_int128t2big(int128_t n);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user