diff options
author | Nick Desaulniers <ndesaulniers@google.com> | 2020-11-17 00:49:25 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@armlinux.org.uk> | 2020-12-08 11:13:59 +0100 |
commit | 331b9d02d77e0e33f273d8328d9f5453efddd926 (patch) | |
tree | 6a5386c3bb22050220a8fefbdaa7cc882ccc47a0 /arch/arm/kernel | |
parent | ARM: 9025/1: Kconfig: CPU_BIG_ENDIAN depends on !LD_IS_LLD (diff) | |
download | linux-331b9d02d77e0e33f273d8328d9f5453efddd926.tar.xz linux-331b9d02d77e0e33f273d8328d9f5453efddd926.zip |
ARM: 9026/1: unwind: remove old check for GCC <= 4.2
Since
commit 0bddd227f3dc ("Documentation: update for gcc 4.9 requirement")
the minimum supported version of GCC is gcc-4.9. It's now safe to remove
this code.
Link: https://github.com/ClangBuiltLinux/linux/issues/427
Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
Reviewed-by: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/unwind.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/arm/kernel/unwind.c b/arch/arm/kernel/unwind.c index f35eb584a18a..59fdf257bf8b 100644 --- a/arch/arm/kernel/unwind.c +++ b/arch/arm/kernel/unwind.c @@ -18,9 +18,6 @@ #warning Your compiler does not have EABI support. #warning ARM unwind is known to compile only with EABI compilers. #warning Change compiler or disable ARM_UNWIND option. -#elif (__GNUC__ == 4 && __GNUC_MINOR__ <= 2) && !defined(__clang__) -#warning Your compiler is too buggy; it is known to not compile ARM unwind support. -#warning Change compiler or disable ARM_UNWIND option. #endif #endif /* __CHECKER__ */ |