summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fcmped.c
blob: 2033b1dc82e70cca3e4696e076e67840ad04361a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "soft-fp.h"
#include "double.h"

int FCMPED(void *rd, void *rs2, void *rs1)
{
	FP_DECL_D(A); FP_DECL_D(B);
	long ret;
	unsigned long *fsr = rd;
	
	__FP_UNPACK_D(A, rs1);
	__FP_UNPACK_D(B, rs2);
	FP_CMP_D(ret, B, A, 2);
	if (ret == -1)
		ret = 2;

	*fsr = (*fsr & ~0xc00) | (ret << 10); 
	return 0;
}