]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/powerpc/powerpc32/power6/fpu/s_llrintf.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / powerpc / powerpc32 / power6 / fpu / s_llrintf.S
index d1853edc7658e2a853c5be05b8f0f40b6f518ab6..b4d013f7a32de1b95e7ad417f10ce82f0f805519 100644 (file)
@@ -1,5 +1,5 @@
 /* Round float 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
    <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
+#include <libm-alias-float.h>
 
 /* long long int[r3, r4] __llrintf (float x[fp1])  */
-ENTRY (__llrintf)      
+ENTRY (__llrintf)
        CALL_MCOUNT
        stwu    r1,-16(r1)
        cfi_adjust_cfa_offset (16)
@@ -28,11 +29,11 @@ ENTRY (__llrintf)
 /* 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 (__llrintf)
 
-weak_alias (__llrintf, llrintf)
+libm_alias_float (__llrint, llrint)