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

int FQTOD(void *rd, void *rs2)
{
	FP_DECL_Q(A); FP_DECL_D(R);

	__FP_UNPACK_Q(A, rs2);
	FP_CONV(D,Q,1,2,R,A);
	__FP_PACK_D(rd, R);
	return 1;
}