git: 063ba7151b3e - stable/13 - Move NO_WUNUSED_BUT_SET_VARIABLE clang helper to the right place.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 03 May 2023 00:29:42 UTC
The branch stable/13 has been updated by jhb:
URL: https://cgit.FreeBSD.org/src/commit/?id=063ba7151b3ea4073e2f0d9033b4c485e43754df
commit 063ba7151b3ea4073e2f0d9033b4c485e43754df
Author: John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2022-03-14 21:05:25 +0000
Commit: John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-05-03 00:11:26 +0000
Move NO_WUNUSED_BUT_SET_VARIABLE clang helper to the right place.
Reviewed by: imp, dim, emaste
Sponsored by: University of Cambridge, Google, Inc.
Differential Revision: https://reviews.freebsd.org/D34537
(cherry picked from commit 2814ba8ef17aa647fa52092106731bcf76a2392d)
---
sys/conf/kern.mk | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys/conf/kern.mk b/sys/conf/kern.mk
index 53eb49c95c4b..bed235cf1afe 100644
--- a/sys/conf/kern.mk
+++ b/sys/conf/kern.mk
@@ -28,6 +28,9 @@ NO_WTAUTOLOGICAL_POINTER_COMPARE= -Wno-tautological-pointer-compare
.if ${COMPILER_VERSION} >= 100000
NO_WMISLEADING_INDENTATION= -Wno-misleading-indentation
.endif
+.if ${COMPILER_VERSION} >= 130000
+NO_WUNUSED_BUT_SET_VARIABLE= -Wno-unused-but-set-variable
+.endif
.if ${COMPILER_VERSION} >= 140000
NO_WBITWISE_INSTEAD_OF_LOGICAL= -Wno-bitwise-instead-of-logical
.endif