summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fdtos.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sparc/math-emu/fdtos.c')
-rw-r--r--arch/sparc/math-emu/fdtos.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/arch/sparc/math-emu/fdtos.c b/arch/sparc/math-emu/fdtos.c
index 612434c40..63951befa 100644
--- a/arch/sparc/math-emu/fdtos.c
+++ b/arch/sparc/math-emu/fdtos.c
@@ -1,12 +1,23 @@
+/* $Id: fdtos.c,v 1.9 1999/05/28 13:42:03 jj Exp $
+ * arch/sparc/math-emu/fdtos.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 "double.h"
#include "single.h"
int FDTOS(void *rd, void *rs2)
{
+ FP_DECL_EX;
FP_DECL_D(A); FP_DECL_S(R);
- __FP_UNPACK_D(A, rs2);
+ FP_UNPACK_DP(A, rs2);
FP_CONV(S,D,1,2,R,A);
- return __FP_PACK_S(rd, R);
+ FP_PACK_SP(rd, R);
+ FP_HANDLE_EXCEPTIONS;
}