x86/fpu/math-emu: Address fallthrough warnings
authorThomas Gleixner <tglx@linutronix.de>
Mon, 12 Aug 2019 18:16:17 +0000 (20:16 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 12 Aug 2019 18:35:05 +0000 (20:35 +0200)
commit91be2587e82a0f16348fd8f12a57e4c328baffc7
treef805f2d53b85ea4b0cfbef051ffaeea707c7aa57
parent5785675dfef4f9edcee66edef7b3af21618d2707
x86/fpu/math-emu: Address fallthrough warnings

/home/tglx/work/kernel/linus/linux/arch/x86/math-emu/errors.c: In function ‘FPU_printall’:
/home/tglx/work/kernel/linus/linux/arch/x86/math-emu/errors.c:187:9: warning: this statement may fall through [-Wimplicit-fallthrough=]
    tagi = FPU_Special(r);
    ~~~~~^~~~~~~~~~~~~~~~
/home/tglx/work/kernel/linus/linux/arch/x86/math-emu/errors.c:188:3: note: here
   case TAG_Valid:
   ^~~~
/home/tglx/work/kernel/linus/linux/arch/x86/math-emu/fpu_trig.c: In function ‘fyl2xp1’:
/home/tglx/work/kernel/linus/linux/arch/x86/math-emu/fpu_trig.c:1353:7: warning: this statement may fall through [-Wimplicit-fallthrough=]
    if (denormal_operand() < 0)
       ^
/home/tglx/work/kernel/linus/linux/arch/x86/math-emu/fpu_trig.c:1356:3: note: here
   case TAG_Zero:

Remove the pointless 'break;' after 'continue;' while at it.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/math-emu/errors.c
arch/x86/math-emu/fpu_trig.c