]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit - Makefile
Makefile: Move -Wno-unused-but-set-variable out of GCC only block
authorNathan Chancellor <nathan@kernel.org>
Thu, 29 Apr 2021 01:23:50 +0000 (18:23 -0700)
committerMasahiro Yamada <masahiroy@kernel.org>
Sat, 1 May 2021 15:43:35 +0000 (00:43 +0900)
commit885480b084696331bea61a4f7eba10652999a9c1
treec4a7396e67c20853813b6cd6bd2f9d01b9b11b55
parent1476fee5c53e24e06cfc436110cdefbc1868e8c1
Makefile: Move -Wno-unused-but-set-variable out of GCC only block

Currently, -Wunused-but-set-variable is only supported by GCC so it is
disabled unconditionally in a GCC only block (it is enabled with W=1).
clang currently has its implementation for this warning in review so
preemptively move this statement out of the GCC only block and wrap it
with cc-disable-warning so that both compilers function the same.

Cc: stable@vger.kernel.org
Link: https://reviews.llvm.org/D100581
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Tested-by: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Makefile