summaryrefslogtreecommitdiffstats
path: root/arch/sparc/math-emu/fnegs.c
blob: 1c662f201e72327edcf820560a6601ee4a794f04 (plain)
1
2
3
4
5
6
int FNEGS(unsigned long *rd, unsigned long *rs2)
{
 	/* just change the sign bit */
	rd[0] = rs2[0] ^ 0x80000000UL;
	return 1;
}