summaryrefslogtreecommitdiff
path: root/lib/libc/arch/i386/gen/fpgetround.S
blob: 182db90f2ba12312a2b71bad1d255a13d2835b8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* $OpenBSD: fpgetround.S,v 1.4 2009/06/21 00:38:22 martynas Exp $ */
/*
 * Written by J.T. Conklin, Apr 4, 1995
 * Public domain.
 */

#include <machine/asm.h>

ENTRY(fpgetround)
	subl $4,%esp
	fnstcw (%esp)
	movl (%esp),%eax
	rorl $10,%eax
	andl $3,%eax
	addl $4,%esp
	ret