]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/i386/fpu/s_lrint.S
socket: Use may_alias on sockaddr structs (bug 19622)
[thirdparty/glibc.git] / sysdeps / i386 / fpu / s_lrint.S
CommitLineData
c131718c
UD
1/* Round argument to nearest integral value according to current rounding
2 direction.
dff8da6b 3 Copyright (C) 1997-2024 Free Software Foundation, Inc.
c131718c 4 This file is part of the GNU C Library.
c131718c
UD
5
6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
c131718c
UD
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 14 Lesser General Public License for more details.
c131718c 15
41bdb6e2 16 You should have received a copy of the GNU Lesser General Public
59ba27a6 17 License along with the GNU C Library; if not, see
5a82c748 18 <https://www.gnu.org/licenses/>. */
c131718c
UD
19
20#include <sysdep.h>
bc4e8f9b 21#include <libm-alias-double.h>
c131718c
UD
22
23 .text
d705269e 24ENTRY(__lrint)
dfd2257a 25 fldl 4(%esp)
c131718c 26 subl $4, %esp
fee732e5 27 cfi_adjust_cfa_offset (4)
c131718c 28 fistpl (%esp)
36775c3b 29 fwait
c131718c 30 popl %eax
fee732e5 31 cfi_adjust_cfa_offset (-4)
c131718c 32 ret
d705269e 33END(__lrint)
bc4e8f9b 34libm_alias_double (__lrint, lrint)