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

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

	__FP_UNPACK_S(A, rs2);
	FP_CONV(Q,S,4,1,R,A);
	return __FP_PACK_Q(rd, R);
}