]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/i386/fpu/e_hypotf.S
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / sysdeps / i386 / fpu / e_hypotf.S
index eb95d6ee999068d1cbbad9e2c5d5b58011c88052..34a1384c9953150f6736042fbef1dc974b51287e 100644 (file)
@@ -1,5 +1,5 @@
 /* Compute the hypothenuse of X and Y.
-   Copyright (C) 1998, 2011 Free Software Foundation, Inc.
+   Copyright (C) 1998-2019 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
+#include <i386-math-asm.h>
 
        .text
 ENTRY(__ieee754_hypotf)
@@ -38,6 +38,7 @@ ENTRY(__ieee754_hypotf)
        fmul    %st(0)          // x * x : y * y
        faddp                   // x * x + y * y
        fsqrt
+       FLT_NARROW_EVAL
 2:     ret
 
        // We have to test whether any of the parameters is Inf.