1 /* $NetBSD: fpsetround.c,v 1.6 2012/03/21 00:38:35 christos Exp $ */
4 * Written by J.T. Conklin, Apr 10, 1995
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpsetround.c,v 1.6 2012/03/21 00:38:35 christos Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
18 __weak_alias(fpsetround
,_fpsetround
)
22 fpsetround(fp_rnd rnd_dir
)
27 __asm("st %%fsr,%0" : "=m" (*&old
));
31 new |= ((rnd_dir
& 0x03) << 30);
33 __asm("ld %0,%%fsr" : : "m" (*&new));
35 return ((unsigned int)old
>> 30) & 0x03;