summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fstoq.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-10-09 00:00:47 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-10-09 00:00:47 +0000
commitd6434e1042f3b0a6dfe1b1f615af369486f9b1fa (patch)
treee2be02f33984c48ec019c654051d27964e42c441 /arch/sparc/math-emu/fstoq.c
parent609d1e803baf519487233b765eb487f9ec227a18 (diff)
Merge with 2.3.19.
Diffstat (limited to 'arch/sparc/math-emu/fstoq.c')
-rw-r--r--arch/sparc/math-emu/fstoq.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/sparc/math-emu/fstoq.c b/arch/sparc/math-emu/fstoq.c
deleted file mode 100644
index e2257c214..000000000
--- a/arch/sparc/math-emu/fstoq.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* $Id: fstoq.c,v 1.9 1999/05/28 13:42:16 jj Exp $
- * arch/sparc/math-emu/fstoq.c
- *
- * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
- * Copyright (C) 1998 Peter Maydell (pmaydell@chiark.greenend.org.uk)
- *
- */
-
-#include "sfp-util.h"
-#include "soft-fp.h"
-#include "quad.h"
-#include "single.h"
-
-int FSTOQ(void *rd, void *rs2)
-{
- FP_DECL_EX;
- FP_DECL_S(A); FP_DECL_Q(R);
-
- FP_UNPACK_SP(A, rs2);
- FP_CONV(Q,S,4,1,R,A);
- FP_PACK_QP(rd, R);
- FP_HANDLE_EXCEPTIONS;
-}