summaryrefslogtreecommitdiff
path: root/src/root.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/root.c')
-rw-r--r--src/root.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/root.c b/src/root.c
index d3b5b171a..88e903bcc 100644
--- a/src/root.c
+++ b/src/root.c
@@ -63,6 +63,8 @@ mpfr_root (mpfr_ptr y, mpfr_srcptr x, unsigned long k, mpfr_rnd_t rnd_mode)
{
if (k == 0)
{
+ /* x^(1/0) = NaN since 0 is not signed, thus 1/0 might be +Inf or
+ -Inf */
MPFR_SET_NAN (y);
MPFR_RET_NAN;
}