summaryrefslogtreecommitdiff
path: root/powerof2.c
diff options
context:
space:
mode:
Diffstat (limited to 'powerof2.c')
-rw-r--r--powerof2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/powerof2.c b/powerof2.c
index f4bf0d3c6..f549fdfa3 100644
--- a/powerof2.c
+++ b/powerof2.c
@@ -32,7 +32,7 @@ mpfr_powerof2_raw (mpfr_srcptr x)
mp_limb_t *xp;
mp_size_t xn;
- MPFR_ASSERTN(MPFR_IS_FP(x));
+ MPFR_ASSERTN(MPFR_IS_PURE_FP(x));
xp = MPFR_MANT(x);
xn = (MPFR_PREC(x) - 1) / BITS_PER_MP_LIMB;
if (NOT_POW2(xp[xn]))