MIPS: math-emu: Fix oversize lines in comparisons
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/9676/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Родитель
241e9c465f
Коммит
b844bc781b
|
@ -36,7 +36,8 @@ int ieee754dp_cmp(union ieee754dp x, union ieee754dp y, int cmp, int sig)
|
|||
ieee754_clearcx(); /* Even clear inexact flag here */
|
||||
|
||||
if (ieee754dp_isnan(x) || ieee754dp_isnan(y)) {
|
||||
if (sig || xc == IEEE754_CLASS_SNAN || yc == IEEE754_CLASS_SNAN)
|
||||
if (sig ||
|
||||
xc == IEEE754_CLASS_SNAN || yc == IEEE754_CLASS_SNAN)
|
||||
ieee754_setcx(IEEE754_INVALID_OPERATION);
|
||||
if (cmp & IEEE754_CUN)
|
||||
return 1;
|
||||
|
|
|
@ -36,7 +36,8 @@ int ieee754sp_cmp(union ieee754sp x, union ieee754sp y, int cmp, int sig)
|
|||
ieee754_clearcx(); /* Even clear inexact flag here */
|
||||
|
||||
if (ieee754sp_isnan(x) || ieee754sp_isnan(y)) {
|
||||
if (sig || xc == IEEE754_CLASS_SNAN || yc == IEEE754_CLASS_SNAN)
|
||||
if (sig ||
|
||||
xc == IEEE754_CLASS_SNAN || yc == IEEE754_CLASS_SNAN)
|
||||
ieee754_setcx(IEEE754_INVALID_OPERATION);
|
||||
if (cmp & IEEE754_CUN)
|
||||
return 1;
|
||||
|
|
Загрузка…
Ссылка в новой задаче