From: Ralf Baechle Date: Tue, 22 Apr 2014 14:02:03 +0000 (+0200) Subject: MIPS: math-emu: Use SPSIGN() rather than DPSIGN() in ieee754sp_sub(). X-Git-Tag: next-20140516~100^2~17 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d5caf8e1e036a6c1f0089d3fd1aabbb90b1bdd30;p=karo-tx-linux.git MIPS: math-emu: Use SPSIGN() rather than DPSIGN() in ieee754sp_sub(). Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/math-emu/sp_sub.c b/arch/mips/math-emu/sp_sub.c index 1131065d0178..828de931690c 100644 --- a/arch/mips/math-emu/sp_sub.c +++ b/arch/mips/math-emu/sp_sub.c @@ -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):