]> 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 528607602dc839f02c9304326fc08c38142e6aae..9a4a4d045063a1569030ca3a577fe107021d53ec 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-2015 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
    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., 51 Franklin Street, Fifth Floor, Boston MA
-   02110-1301 USA.  */
+   License along with the GNU C Library; if not, see
+   <http://www.gnu.org/licenses/>.  */
 
 #include <sysdep.h>
 #include <math_ldbl_opt.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)
@@ -30,9 +29,9 @@ 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)