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.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/sparc/math-emu/fdtos.c b/arch/sparc/math-emu/fdtos.c
new file mode 100644
index 000000000..83b8a14ed
--- /dev/null
+++ b/arch/sparc/math-emu/fdtos.c
@@ -0,0 +1,13 @@
+#include "soft-fp.h"
+#include "double.h"
+#include "single.h"
+
+int FDTOS(void *rd, void *rs2)
+{
+ FP_DECL_D(A); FP_DECL_S(R);
+
+ __FP_UNPACK_D(A, rs2);
+ FP_CONV(S,D,1,2,R,A);
+ __FP_PACK_S(rd, R);
+ return 1;
+}