diff options
author | Nathan Chancellor <[email protected]> | 2021-11-29 09:58:02 -0700 |
---|---|---|
committer | Masahiro Yamada <[email protected]> | 2021-12-02 17:25:21 +0900 |
commit | 0766bffcae0706baddea6aa3f85b43031ede0e0d (patch) | |
tree | cd48675f22bd66a52c34b23031048766ef2bbe12 | |
parent | e1ab4182ca113f9a14e3aefc15cf7652b8446991 (diff) |
gcov: Remove compiler version check
The minimum supported version of LLVM has been raised to 11.0.0, meaning
this check is always true, so it can be dropped.
Signed-off-by: Nathan Chancellor <[email protected]>
Reviewed-by: Miguel Ojeda <[email protected]>
Reviewed-by: Mark Brown <[email protected]>
Reviewed-by: Nick Desaulniers <[email protected]>
Reviewed-by: Kees Cook <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
-rw-r--r-- | kernel/gcov/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/gcov/Kconfig b/kernel/gcov/Kconfig index 053447183ac5..04f4ebdc3cf5 100644 --- a/kernel/gcov/Kconfig +++ b/kernel/gcov/Kconfig @@ -4,7 +4,6 @@ menu "GCOV-based kernel profiling" config GCOV_KERNEL bool "Enable gcov-based kernel profiling" depends on DEBUG_FS - depends on !CC_IS_CLANG || CLANG_VERSION >= 110000 depends on !ARCH_WANTS_NO_INSTR || CC_HAS_NO_PROFILE_FN_ATTR select CONSTRUCTORS default n |