1 /* $NetBSD: fpsetround.c,v 1.5 2012/03/17 21:35:06 martin Exp $ */
4 * Written by J.T. Conklin, Apr 10, 1995
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpsetround.c,v 1.5 2012/03/17 21:35:06 martin Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
15 #include <sys/types.h>
19 __weak_alias(fpsetround
,_fpsetround
)
29 __asm("st %%fsr,%0" : "=m" (*&old
));
33 new |= ((rnd_dir
& 0x03) << 30);
35 __asm("ld %0,%%fsr" : : "m" (*&new));
37 return ((uint32_t)old
>> 30) & 0x03;