Fix mdoc(7)/man(7) mix up.
[netbsd-mini2440.git] / lib / libc / arch / sparc64 / gen / fpsetround.c
blobc40b6803fe0be66c7fa3e2a859a7abb099204d5d
1 /* $NetBSD: fpsetround.c,v 1.3 2005/06/12 05:21:27 lukem Exp $ */
3 /*
4 * Written by J.T. Conklin, Apr 10, 1995
5 * Public domain.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpsetround.c,v 1.3 2005/06/12 05:21:27 lukem Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
15 #include <ieeefp.h>
17 #ifdef __weak_alias
18 __weak_alias(fpsetround,_fpsetround)
19 #endif
21 fp_rnd
22 fpsetround(rnd_dir)
23 fp_rnd rnd_dir;
25 fp_rnd old;
26 fp_rnd new;
28 __asm("st %%fsr,%0" : "=m" (*&old));
30 new = old;
31 new &= ~(0x03 << 30);
32 new |= ((rnd_dir & 0x03) << 30);
34 __asm("ld %0,%%fsr" : : "m" (*&new));
36 return (old >> 30) & 0x03;