summaryrefslogtreecommitdiff
path: root/sysdeps/m68k/m680x0/fpu/e_pow.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/m68k/m680x0/fpu/e_pow.c')
-rw-r--r--sysdeps/m68k/m680x0/fpu/e_pow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/m68k/m680x0/fpu/e_pow.c b/sysdeps/m68k/m680x0/fpu/e_pow.c
index 34bdf464b7..a94c0e0c0d 100644
--- a/sysdeps/m68k/m680x0/fpu/e_pow.c
+++ b/sysdeps/m68k/m680x0/fpu/e_pow.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997-2016 Free Software Foundation, Inc.
+/* Copyright (C) 1997-2018 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -64,7 +64,7 @@ s(__ieee754_pow) (float_type x, float_type y)
if (y == 2)
return x * x;
if (y == 0.5 && !(x_cond & __M81_COND_NEG))
- return m81(__ieee754_sqrt) (x);
+ return m81(sqrt) (x);
if (x == 10.0)
{
@@ -106,7 +106,7 @@ s(__ieee754_pow) (float_type x, float_type y)
this format and rounding won't change the result. */
{
int32_t exponent;
- u_int32_t i0, i1;
+ uint32_t i0, i1;
GET_LDOUBLE_WORDS (exponent, i0, i1, y);
exponent = (exponent & 0x7fff) - 0x3fff;
if (exponent <= 31