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

int FQTOI(unsigned *rd, void *rs2)
{
	FP_DECL_Q(A);
	unsigned r;

	__FP_UNPACK_Q(A, rs2);
	FP_TO_INT_Q(r, A, 32, 1);
	*rd = r;
	return 1;
}