about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_nearbyint.S
blob: b2a6cf12675749e01f10ce31266658da5f30ea1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Public domain.
 */

#include <machine/asm.h>
#include <libm-alias-double.h>

ENTRY(__nearbyint)
	fldl	4(%esp)
	subl	$32, %esp
	cfi_adjust_cfa_offset (32)
	fnstenv	4(%esp)
	frndint
	fldenv	4(%esp)
	addl	$32, %esp
	cfi_adjust_cfa_offset (-32)
	ret
END (__nearbyint)
libm_alias_double (__nearbyint, nearbyint)