Skip to content
Commit 26da3501 authored by Eric W. Biederman's avatar Eric W. Biederman
Browse files

signal/sh: Stop gcc warning about an impossible case in do_divide_error



Geert Uytterhoeven <geert@linux-m68k.org> reported:
>   HOSTLD  scripts/mod/modpost
>   CC      arch/sh/kernel/traps_32.o
> arch/sh/kernel/traps_32.c: In function 'do_divide_error':
> arch/sh/kernel/traps_32.c:606:17: error: 'code' may be used uninitialized in this function [-Werror=uninitialized]
> cc1: all warnings being treated as errors

It is clear from inspection that do_divide_error is only called with
TRAP_DIVZERO_ERROR or TRAP_DIVOVF_ERROR, as that is the way
set_exception_table_vec is called.  So let gcc know the other cases
should not be considered by returning in all other cases.

This removes the warning and let's the code continue to build.

Reported-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Fixes: c65626c0 ("signal/sh: Use force_sig_fault where appropriate")
Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
parent 0bb0a114
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment