]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/powerpc/powerpc32/power6/fpu/s_llrint.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / powerpc / powerpc32 / power6 / fpu / s_llrint.S
index 0e3fa8851e07a83dba1e0bd0efbe8ea96e598e62..e8134f7451dcb1079cc9fe16d083739dd4338a98 100644 (file)
@@ -1,5 +1,5 @@
 /* Round double to long int.  PowerPC32 on PowerPC64 version.
-   Copyright (C) 2004, 2006, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2004-2019 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
 
 #include <sysdep.h>
 #include <math_ldbl_opt.h>
+#include <libm-alias-double.h>
 
 /* long long int[r3, r4] __llrint (double x[fp1])  */
-ENTRY (__llrint)       
+ENTRY (__llrint)
        CALL_MCOUNT
        stwu    r1,-16(r1)
        cfi_adjust_cfa_offset (16)
@@ -29,18 +30,10 @@ ENTRY (__llrint)
 /* Insure the following load is in a different dispatch group by
    inserting "group ending nop".  */
        ori     r1,r1,0
-       lwz     r3,8(r1)
-       lwz     r4,12(r1)
-       addi    r1,r1,16        
+       lwz     r3,8+HIWORD(r1)
+       lwz     r4,8+LOWORD(r1)
+       addi    r1,r1,16
        blr
        END (__llrint)
 
-weak_alias (__llrint, llrint)
-
-#ifdef NO_LONG_DOUBLE
-strong_alias (__llrint, __llrintl)
-weak_alias (__llrint, llrintl)
-#endif
-#if LONG_DOUBLE_COMPAT(libm, GLIBC_2_1)
-compat_symbol (libm, __llrint, llrintl, GLIBC_2_1)
-#endif
+libm_alias_double (__llrint, llrint)