]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/i386/fpu/s_trunc.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / i386 / fpu / s_trunc.S
index 1f4fd652f17b5f7c029db3e51b6b7392a0210b8d..a42a295281d80d927d1bcc15107d4a44f567db35 100644 (file)
@@ -1,5 +1,5 @@
 /* Truncate double value.
-   Copyright (C) 1997-2013 Free Software Foundation, Inc.
+   Copyright (C) 1997-2015 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
 
@@ -22,6 +22,7 @@
 ENTRY(__trunc)
        fldl    4(%esp)
        subl    $8, %esp
+       cfi_adjust_cfa_offset (8)
        fstcw   4(%esp)
        movl    $0xc00, %edx
        orl     4(%esp), %edx
@@ -30,6 +31,7 @@ ENTRY(__trunc)
        frndint
        fldcw   4(%esp)
        addl    $8, %esp
+       cfi_adjust_cfa_offset (-8)
        ret
 END(__trunc)
 weak_alias (__trunc, trunc)