git: 74f7afdfd2f5 - main - Disable clang 14 warning about bitwise operators in one more place
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 10 Feb 2022 18:49:17 UTC
The branch main has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=74f7afdfd2f5c1beaed7af1bfe89b8b520744500 commit 74f7afdfd2f5c1beaed7af1bfe89b8b520744500 Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2022-02-10 18:48:31 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2022-02-10 18:48:31 +0000 Disable clang 14 warning about bitwise operators in one more place Follow up 5f2aca839400, where I missed the -Werror warning still being emitted in libsa. Fixes: 5f2aca839400 MFC after: 3 days --- stand/libsa/zfs/Makefile.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/stand/libsa/zfs/Makefile.inc b/stand/libsa/zfs/Makefile.inc index 777250806601..00839c05d37d 100644 --- a/stand/libsa/zfs/Makefile.inc +++ b/stand/libsa/zfs/Makefile.inc @@ -30,6 +30,7 @@ CFLAGS.nvlist.c+= -I${ZFSOSINC}/spl CFLAGS.zfs.c+= -I${ZFSOSINC}/spl \ -I${SRCTOP}/sys/cddl/contrib/opensolaris/common/lz4 CFLAGS.zstd.c+= -U__BMI__ +CFLAGS.zstd.c+= ${NO_WBITWISE_INSTEAD_OF_LOGICAL} CFLAGS.zstd_shim.c+= -DIN_BASE -I${OZFS}/include # Do not unroll skein loops, reduce code size