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

int FSTOI(unsigned *rd, void *rs2)
{
	FP_DECL_S(A);
	unsigned r;

	__FP_UNPACK_S(A, rs2);
	FP_TO_INT_S(r, A, 32, 1);
	*rd = r;
	return 1;
}