Commit d3690f8b713f9710e68214ca38fb8b07b587a2a7

Authored by Greg Dietsche
Committed by Geert Uytterhoeven
1 parent ffe6c42aa3

m68k/math-emu: Remove unnecessary code

Remove unnecessary code that matches this coccinelle pattern

	if (...)
		return ret;
	return ret;

Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>

Showing 1 changed file with 0 additions and 3 deletions Side-by-side Diff

arch/m68k/math-emu/fp_log.c
... ... @@ -105,9 +105,6 @@
105 105  
106 106 fp_monadic_check(dest, src);
107 107  
108   - if (IS_ZERO(dest))
109   - return dest;
110   -
111 108 return dest;
112 109 }
113 110