Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5410d19 authored by Ralf Baechle's avatar Ralf Baechle
Browse files

MIPS: math-emu: Call ieee754di_xcpt, not ieee754si_xcpt in ieee754dp_cmp.

parent 1eaf198d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ int ieee754dp_cmp(union ieee754dp x, union ieee754dp y, int cmp, int sig)
			return 1;
		if (cmp & (IEEE754_CLT | IEEE754_CGT)) {
			if (sig && ieee754_setandtestcx(IEEE754_INVALID_OPERATION))
				return ieee754si_xcpt(0, "fcmpf", x);
				return ieee754di_xcpt(0, "fcmpf", x);
		}
		return 0;
	} else {