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
$

参考資料