summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/math-emu/fstox.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sparc64/math-emu/fstox.c')
-rw-r--r--arch/sparc64/math-emu/fstox.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/sparc64/math-emu/fstox.c b/arch/sparc64/math-emu/fstox.c
deleted file mode 100644
index fecca41d3..000000000
--- a/arch/sparc64/math-emu/fstox.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* $Id: fstox.c,v 1.3 1999/05/28 13:45:01 jj Exp $
- * arch/sparc64/math-emu/fstox.c
- *
- * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz)
- * Copyright (C) 1999 David S. Miller (davem@redhat.com)
- *
- */
-
-#define FP_ROUNDMODE FP_RND_ZERO
-#include "sfp-util.h"
-#include "soft-fp.h"
-#include "single.h"
-
-int FSTOX(long *rd, void *rs2)
-{
- FP_DECL_EX;
- FP_DECL_S(A);
- long r;
-
- FP_UNPACK_SP(A, rs2);
- FP_TO_INT_S(r, A, 64, 1);
- if (!FP_INHIBIT_RESULTS)
- *rd = r;
- FP_HANDLE_EXCEPTIONS;
-}