clang で負のビットシフトを警告するには、-Wshift-count-negative
オプションを指定します。
#include <stdio.h>
int main()
{
int x = 8;
int y = x << -1;
printf("%d\n", y);
return 0;
}
負の値を指定してビットシフトを行った場合の動作は未定義です。 したがって、意図しない演算結果となることがあります。
$ # M1 Mac (Monterey) + Apple clang 13.1.6
$ clang sample.cpp -o sample -Wshift-count-negative
sample.cpp:6:15: warning: shift count is negative [-Wshift-count-negative]
int y = x << -1;
^ ~~
1 warning generated.
$ ./sample
8
-Wshift-count-negative
は デフォルトで有効になっている ため、警告は自動的に表示されます。
$ # M1 Mac (Monterey) + Apple clang 13.1.6
$ clang sample.cpp
sample.cpp:6:15: warning: shift count is negative [-Wshift-count-negative]
int y = x << -1;
^ ~~
1 warning generated.
警告を抑制する
逆に、警告を抑制したい場合は -Wno-shift-count-negative
を指定します。
$ # M1 Mac (Monterey) + Apple clang 13.1.6
$ clang sample.cpp -Wno-shift-count-negative
$
参考資料
-
Clang documentation — DIAGNOSTIC FLAGS IN CLANG
https://clang.llvm.org/docs/DiagnosticsReference.html#wshift-count-negative -
INT34-C. 負のビット数のシフトやオペランドのビット数以上のシフトを行わない
https://www.jpcert.or.jp/sc-rules/c-int34-c.html