From c26293dccfd1ed1388980957c0dd65bdb9c68a01 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 7 Sep 2013 19:04:18 +0000 Subject: bignum.c, math.c: type predicates * bignum.c, math.c: use type predicate macros instead of TYPE(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- math.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'math.c') diff --git a/math.c b/math.c index a8049297c2..98282b09f5 100644 --- a/math.c +++ b/math.c @@ -444,7 +444,7 @@ math_log(int argc, VALUE *argv) rb_scan_args(argc, argv, "11", &x, &base); - if (TYPE(x) == T_BIGNUM && RBIGNUM_POSITIVE_P(x) && + if (RB_TYPE_P(x, T_BIGNUM) && RBIGNUM_POSITIVE_P(x) && DBL_MAX_EXP <= (numbits = rb_absint_numwords(x, 1, NULL))) { numbits -= DBL_MANT_DIG; x = rb_big_rshift(x, SIZET2NUM(numbits)); @@ -501,7 +501,7 @@ math_log2(VALUE obj, VALUE x) double d0, d; size_t numbits = 0; - if (TYPE(x) == T_BIGNUM && RBIGNUM_POSITIVE_P(x) && + if (RB_TYPE_P(x, T_BIGNUM) && RBIGNUM_POSITIVE_P(x) && DBL_MAX_EXP <= (numbits = rb_absint_numwords(x, 1, NULL))) { numbits -= DBL_MANT_DIG; x = rb_big_rshift(x, SIZET2NUM(numbits)); @@ -540,7 +540,7 @@ math_log10(VALUE obj, VALUE x) double d0, d; size_t numbits = 0; - if (TYPE(x) == T_BIGNUM && RBIGNUM_POSITIVE_P(x) && + if (RB_TYPE_P(x, T_BIGNUM) && RBIGNUM_POSITIVE_P(x) && DBL_MAX_EXP <= (numbits = rb_absint_numwords(x, 1, NULL))) { numbits -= DBL_MANT_DIG; x = rb_big_rshift(x, SIZET2NUM(numbits)); -- cgit v1.2.3