]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/i386/fpu/s_lrintl.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / i386 / fpu / s_lrintl.S
CommitLineData
dfd2257a
UD
1/* Round argument to nearest integral value according to current rounding
2 direction.
04277e02 3 Copyright (C) 1997-2019 Free Software Foundation, Inc.
478b92f0 4 This file is part of the GNU C Library.
dfd2257a 5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
28f540f4 6
478b92f0 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.
28f540f4 11
478b92f0
UD
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.
28f540f4 16
41bdb6e2 17 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
18 License along with the GNU C Library; if not, see
19 <http://www.gnu.org/licenses/>. */
28f540f4 20
2ce30701 21#include <libm-alias-ldouble.h>
dfd2257a 22#include <sysdep.h>
28f540f4 23
dfd2257a
UD
24 .text
25ENTRY(__lrintl)
26 fldt 4(%esp)
27 subl $4, %esp
fee732e5 28 cfi_adjust_cfa_offset (4)
dfd2257a
UD
29 fistpl (%esp)
30 fwait
31 popl %eax
fee732e5 32 cfi_adjust_cfa_offset (-4)
dfd2257a
UD
33 ret
34END(__lrintl)
2ce30701 35libm_alias_ldouble (__lrint, lrint)