diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-10-09 00:00:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-10-09 00:00:47 +0000 |
commit | d6434e1042f3b0a6dfe1b1f615af369486f9b1fa (patch) | |
tree | e2be02f33984c48ec019c654051d27964e42c441 /arch/sparc64/math-emu/fqtos.c | |
parent | 609d1e803baf519487233b765eb487f9ec227a18 (diff) |
Merge with 2.3.19.
Diffstat (limited to 'arch/sparc64/math-emu/fqtos.c')
-rw-r--r-- | arch/sparc64/math-emu/fqtos.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/arch/sparc64/math-emu/fqtos.c b/arch/sparc64/math-emu/fqtos.c deleted file mode 100644 index 6edb6aaca..000000000 --- a/arch/sparc64/math-emu/fqtos.c +++ /dev/null @@ -1,23 +0,0 @@ -/* $Id: fqtos.c,v 1.4 1999/05/28 13:44:30 jj Exp $ - * arch/sparc64/math-emu/fqtos.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 "quad.h" -#include "single.h" - -int FQTOS(void *rd, void *rs2) -{ - FP_DECL_EX; - FP_DECL_Q(A); FP_DECL_S(R); - - FP_UNPACK_QP(A, rs2); - FP_CONV(S,Q,1,2,R,A); - FP_PACK_SP(rd, R); - FP_HANDLE_EXCEPTIONS; -} |