“Use of a signed integer operand with a binary bit

2019-02-21 08:43发布

In the following C snippet that checks if the first two bits of a 16-bit sequence are set:

bool is_pointer(unsigned short int sequence) {
  return (sequence >> 14) == 3;
}

CLion's Clang-Tidy is giving me a "Use of a signed integer operand with a binary bitwise operator" warning, and I can't understand why. Is unsigned short not unsigned enough?

2条回答
来,给爷笑一个
2楼-- · 2019-02-21 09:18

I think the integer promotion causes here the warning. Operands smaller than an int are widened to integer for the arithmetic expression, which is signed. So your code is effectively return ( (int)sequence >> 14)==3; which leds to the warning. Try return ( (unsigned)sequence >> 14)==3; or return (sequence & 0xC000)==0xC000;.

查看更多
Evening l夕情丶
3楼-- · 2019-02-21 09:25

The code for this check seems to care if either operand to the bitwise operator is signed. It is not sequence causing the warning, but 14, and the problem would be alleviated by making 14 unsigned.

(sequence >> 14u)
查看更多
登录 后发表回答