Date: Thu, 25 May 2023 17:45:05 GMT From: John Baldwin <jhb@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 98d06eea14a5 - main - sys: Enable -Wunused-but-set-variable for clang 15+. Message-ID: <202305251745.34PHj54m093573@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=98d06eea14a5056e22328140fee517a4f0612bf8 commit 98d06eea14a5056e22328140fee517a4f0612bf8 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2023-05-25 17:44:53 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2023-05-25 17:44:53 +0000 sys: Enable -Wunused-but-set-variable for clang 15+. It was already enabled for older clang versions and GCC. --- sys/conf/kern.mk | 6 ------ 1 file changed, 6 deletions(-) diff --git a/sys/conf/kern.mk b/sys/conf/kern.mk index be7e452bb6e3..9e977a6e4a01 100644 --- a/sys/conf/kern.mk +++ b/sys/conf/kern.mk @@ -46,12 +46,6 @@ CWARNEXTRA?= -Wno-error=tautological-compare -Wno-error=empty-body \ -Wno-error=pointer-sign CWARNEXTRA+= -Wno-error=shift-negative-value CWARNEXTRA+= -Wno-address-of-packed-member -.if ${COMPILER_VERSION} >= 150000 -# Clang 15 has much more aggressive diagnostics about -# unused-but-set variables. Make these -# non-fatal for the time being. -CWARNEXTRA+= -Wno-error=unused-but-set-variable -.endif .endif # clang .if ${COMPILER_TYPE} == "gcc"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305251745.34PHj54m093573>