summaryrefslogtreecommitdiff
path: root/lib/libc/arch/sparc64/gen/fpgetround.c
blob: b15f2e3bccc2d6f4ce6b009f6289edc857fc8e24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*	$OpenBSD: fpgetround.c,v 1.1 2001/08/29 01:34:56 art Exp $	*/

/*
 * Written by J.T. Conklin, Apr 10, 1995
 * Public domain.
 */

#include <ieeefp.h>

fp_rnd
fpgetround()
{
	int x;

	__asm__("st %%fsr,%0" : "=m" (*&x));
	return (x >> 30) & 0x03;
}