summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fabss.c
blob: 5429cc73365c57fae1c35b28fdaf7cbf2ee4654a (plain)
1
2
3
4
5
6
int FABSS(unsigned long *rd, unsigned long *rs2)
{
	/* Clear the sign bit (high bit of word 0) */
	rd[0] = rs2[0] & 0x7fffffffUL;
	return 0;
}