diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-30 01:17:19 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-23 15:12:37 +0200 |
commit | aef3fb76aa1390ef864db888d06d8fcd5510df2d (patch) | |
tree | 578bee5fd283d8b427eba892ef2af8aca3accf98 /arch/mips/math-emu/sp_sqrt.c | |
parent | MIPS: Sort out mm_isBranchInstr. (diff) | |
download | linux-aef3fb76aa1390ef864db888d06d8fcd5510df2d.tar.xz linux-aef3fb76aa1390ef864db888d06d8fcd5510df2d.zip |
MIPS: math-emu: Nuke alternative names for IEEE-754 rounding modes.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/math-emu/sp_sqrt.c')
-rw-r--r-- | arch/mips/math-emu/sp_sqrt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/math-emu/sp_sqrt.c b/arch/mips/math-emu/sp_sqrt.c index 33b3e0001e9e..94f5befa1d70 100644 --- a/arch/mips/math-emu/sp_sqrt.c +++ b/arch/mips/math-emu/sp_sqrt.c @@ -100,7 +100,7 @@ union ieee754sp ieee754sp_sqrt(union ieee754sp x) if (ix != 0) { ieee754_setcx(IEEE754_INEXACT); switch (ieee754_csr.rm) { - case IEEE754_RP: + case IEEE754_RU: q += 2; break; case IEEE754_RN: |