summaryrefslogtreecommitdiffstats
path: root/arch/sparc64/math-emu/fqtos.c
blob: 833f10618da1d9ff9c86bb2e868a4db7653896aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "soft-fp.h"
#include "quad.h"
#include "single.h"

int FQTOS(void *rd, void *rs2)
{
	FP_DECL_Q(A); FP_DECL_S(R);

	__FP_UNPACK_Q(A, rs2);
	FP_CONV(S,Q,1,2,R,A);
	__FP_PACK_S(rd, R);
	return 1;
}