summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fdtos.c
blob: 83b8a14ed9c67e0fadae5e51b25cf788985b82fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}