26 lines
367 B
C
26 lines
367 B
C
/* $NetBSD: fpgetround.c,v 1.3 2002/01/13 21:45:49 thorpej Exp $ */
|
|
|
|
/*
|
|
* Written by J.T. Conklin, Apr 10, 1995
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <ieeefp.h>
|
|
|
|
#ifdef __weak_alias
|
|
__weak_alias(fpgetround,_fpgetround)
|
|
#endif
|
|
|
|
fp_rnd
|
|
fpgetround()
|
|
{
|
|
int x;
|
|
|
|
__asm__("st %%fsr,%0" : "=m" (*&x));
|
|
return (x >> 30) & 0x03;
|
|
}
|