summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fstoq.c
blob: 081c4d4d03140ef2753be2211531fd157ec04c80 (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 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);
	__FP_PACK_Q(rd, R);
	return 1;
}