diff options
| author | Nathan Chancellor <nathan@kernel.org> | 2026-05-17 13:05:19 -1000 |
|---|---|---|
| committer | Nathan Chancellor <nathan@kernel.org> | 2026-05-27 15:20:06 -0700 |
| commit | c919893eabb437d18dee3dddba6bc508bf1b1edd (patch) | |
| tree | 73cb0c42532d3ebe2ca4e4674e4f08f5b47b49c2 /include | |
| parent | c69eaa687667e529fcc0cce02394cca5a4db2249 (diff) | |
| download | lwn-c919893eabb437d18dee3dddba6bc508bf1b1edd.tar.gz lwn-c919893eabb437d18dee3dddba6bc508bf1b1edd.zip | |
compiler-clang.h: Drop explicit version number from "all" diagnostic macro
This is more consistent with what commit 7efa84b5cdd6 ("compiler-gcc.h:
Introduce __diag_GCC_all") did for GCC.
Link: https://patch.msgid.link/20260517-bump-minimum-supported-llvm-version-to-17-v2-16-b3b8cda46bdd@kernel.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/compiler-clang.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/compiler-clang.h b/include/linux/compiler-clang.h index eadf48b7b5b1..a105e2e8016c 100644 --- a/include/linux/compiler-clang.h +++ b/include/linux/compiler-clang.h @@ -122,10 +122,10 @@ #define __diag_str(s) __diag_str1(s) #define __diag(s) _Pragma(__diag_str(clang diagnostic s)) -#define __diag_clang_13(s) __diag(s) +#define __diag_clang_all(s) __diag(s) #define __diag_ignore_all(option, comment) \ - __diag_clang(13, ignore, option) + __diag_clang(all, ignore, option) /* * clang has horrible behavior with "g" or "rm" constraints for asm |
