summaryrefslogtreecommitdiff
path: root/lib/libc/arch/mvme88k/gen/fpsetmask.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/arch/mvme88k/gen/fpsetmask.c')
-rw-r--r--lib/libc/arch/mvme88k/gen/fpsetmask.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/libc/arch/mvme88k/gen/fpsetmask.c b/lib/libc/arch/mvme88k/gen/fpsetmask.c
deleted file mode 100644
index 42d88a7f641..00000000000
--- a/lib/libc/arch/mvme88k/gen/fpsetmask.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * 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);
-}