Skip to content
Snippets Groups Projects
Commit 3e160aad authored by Ralf Baechle's avatar Ralf Baechle
Browse files

MIPS: math-emu: Use SPSIGN() rather than DPSIGN() in ieee754sp_sub().


Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent ad8fb553
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ union ieee754sp ieee754sp_sub(union ieee754sp x, union ieee754sp y)
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_NORM):
case CLPAIR(IEEE754_CLASS_ZERO, IEEE754_CLASS_DNORM):
/* quick fix up */
DPSIGN(y) ^= 1;
SPSIGN(y) ^= 1;
return y;
case CLPAIR(IEEE754_CLASS_DNORM, IEEE754_CLASS_DNORM):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment