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