summaryrefslogtreecommitdiff
path: root/lib/libc/arch/m88k/gen/fpsetmask.c
blob: 03b7164052edd201ad0af34a319bd4c1b8f02e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*	$OpenBSD: fpsetmask.c,v 1.3 2005/08/07 16:40:14 espie Exp $	*/

/*
 * Written by J.T. Conklin, Apr 10, 1995
 * Public domain.
 * Porting to m88k by Nivas Madhur.
 */

#include <ieeefp.h>

fp_except
fpsetmask(mask)
	fp_except mask;
{
	fp_except old;
	fp_except new;

	__asm__ volatile("fldcr %0,fcr63" : "=r" (old));

	new = old;
	new &= ~0x1f;		/* clear bottom 5 bits and */
	new |= (mask & 0x1f);	/* set them to mask */

	__asm__ volatile("fstcr %0,fcr63" : : "r" (new));

	return (old & 0x1f);
}