From: ndesaulniers@google.com Date: Mon, 15 Oct 2018 21:24:27 +0000 (-0700) Subject: compiler-gcc: remove comment about gcc 4.5 from unreachable() X-Git-Tag: v4.20-rc1~28^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1ff2fea5e30ca15752777441ecb64a169fe22e9e;p=thirdparty%2Fkernel%2Flinux.git compiler-gcc: remove comment about gcc 4.5 from unreachable() Remove the comment about being unable to detect __builtin_unreachable. __builtin_unreachable was implemented in the GCC 4.5 timeframe. The kernel's minimum supported version of GCC is 4.6 since commit cafa0010cd51 ("Raise the minimum required gcc version to 4.6"). Commit cb984d101b30 ("compiler-gcc: integrate the various compiler-gcc[345].h files") shows that unreachable() had different guards based on GCC version. Suggested-by: Miguel Ojeda Signed-off-by: Nick Desaulniers Signed-off-by: Miguel Ojeda --- diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index cfac027e16251..2010493e10408 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h @@ -96,10 +96,6 @@ * Mark a position in code as unreachable. This can be used to * suppress control flow warnings after asm blocks that transfer * control elsewhere. - * - * Early snapshots of gcc 4.5 don't support this and we can't detect - * this in the preprocessor, but we can live with this because they're - * unreleased. Really, we need to have autoconf for the kernel. */ #define unreachable() \ do { \