summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/math-emu/fqtox.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sparc64/math-emu/fqtox.c')
-rw-r--r--arch/sparc64/math-emu/fqtox.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/arch/sparc64/math-emu/fqtox.c b/arch/sparc64/math-emu/fqtox.c
deleted file mode 100644
index 458061fb0..000000000
--- a/arch/sparc64/math-emu/fqtox.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/* $Id: fqtox.c,v 1.4 1999/05/28 13:44:34 jj Exp $
- * arch/sparc64/math-emu/fqtox.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 "quad.h"
-
-int FQTOX(long *rd, void *rs2)
-{
- FP_DECL_EX;
- FP_DECL_Q(A);
- long r;
-
- FP_UNPACK_QP(A, rs2);
- FP_TO_INT_Q(r, A, 64, 1);
- if (!FP_INHIBIT_RESULTS)
- *rd = r;
- FP_HANDLE_EXCEPTIONS;
-}