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

Commit 2d5e7b9f authored by Ralf Baechle's avatar Ralf Baechle Committed by
Browse files

MIPS: FP: Remove silly trick to avoid warning.


    
Just doesn't fool a modern compiler anymore.
    
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 26487957
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -33,8 +33,6 @@ ieee754dp ieee754dp_fint(int x)

	CLEARCX;

	xc = ( 0 ? xc : xc );

	if (x == 0)
		return ieee754dp_zero(0);
	if (x == 1 || x == -1)
+0 −2
Original line number Diff line number Diff line
@@ -33,8 +33,6 @@ ieee754dp ieee754dp_flong(s64 x)

	CLEARCX;

	xc = ( 0 ? xc : xc );

	if (x == 0)
		return ieee754dp_zero(0);
	if (x == 1 || x == -1)
+0 −2
Original line number Diff line number Diff line
@@ -33,8 +33,6 @@ ieee754sp ieee754sp_fint(int x)

	CLEARCX;

	xc = ( 0 ? xc : xc );

	if (x == 0)
		return ieee754sp_zero(0);
	if (x == 1 || x == -1)
+0 −2
Original line number Diff line number Diff line
@@ -33,8 +33,6 @@ ieee754sp ieee754sp_flong(s64 x)

	CLEARCX;

	xc = ( 0 ? xc : xc );

	if (x == 0)
		return ieee754sp_zero(0);
	if (x == 1 || x == -1)