summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/math-emu/fstod.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sparc64/math-emu/fstod.c')
-rw-r--r--arch/sparc64/math-emu/fstod.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/sparc64/math-emu/fstod.c b/arch/sparc64/math-emu/fstod.c
deleted file mode 100644
index 3c7a974ca..000000000
--- a/arch/sparc64/math-emu/fstod.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* $Id: fstod.c,v 1.4 1999/05/28 13:44:51 jj Exp $
- * arch/sparc64/math-emu/fstod.c
- *
- * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
- * Copyright (C) 1999 David S. Miller (davem@redhat.com)
- *
- */
-
-#include "sfp-util.h"
-#include "soft-fp.h"
-#include "double.h"
-#include "single.h"
-
-int FSTOD(void *rd, void *rs2)
-{
- FP_DECL_EX;
- FP_DECL_S(A); FP_DECL_D(R);
-
- FP_UNPACK_SP(A, rs2);
- FP_CONV(D,S,1,1,R,A);
- FP_PACK_DP(rd, R);
- FP_HANDLE_EXCEPTIONS;
-}