diff options
| author | Nick Desaulniers <[email protected]> | 2021-09-10 16:40:46 -0700 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2021-09-13 10:18:29 -0700 |
| commit | 4e59869aa6550657cb148ad49835605660ec9b88 (patch) | |
| tree | e8712493192496dffb0580341ddf509caf52042f /tools/include/linux | |
| parent | 156102fe0bb669f40f2fd27856b21f9fa8157090 (diff) | |
compiler-gcc.h: drop checks for older GCC versions
Now that GCC 5.1 is the minimally supported default, drop the values we
don't use.
Signed-off-by: Nick Desaulniers <[email protected]>
Reviewed-by: Kees Cook <[email protected]>
Reviewed-by: Nathan Chancellor <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'tools/include/linux')
| -rw-r--r-- | tools/include/linux/compiler-gcc.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/include/linux/compiler-gcc.h b/tools/include/linux/compiler-gcc.h index a590a1dfafd9..43d9a46d36f0 100644 --- a/tools/include/linux/compiler-gcc.h +++ b/tools/include/linux/compiler-gcc.h @@ -16,9 +16,7 @@ # define __fallthrough __attribute__ ((fallthrough)) #endif -#if GCC_VERSION >= 40300 -# define __compiletime_error(message) __attribute__((error(message))) -#endif /* GCC_VERSION >= 40300 */ +#define __compiletime_error(message) __attribute__((error(message))) /* &a[0] degrades to a pointer: a different type from an array */ #define __must_be_array(a) BUILD_BUG_ON_ZERO(__same_type((a), &(a)[0])) |