| 3437 | //--------------------------------------------------------------------------- |
| 3438 | |
| 3439 | static bool isNegative(const Token *tok, const Settings &settings) |
| 3440 | { |
| 3441 | return tok->valueType() && tok->valueType()->sign == ValueType::SIGNED && tok->getValueLE(-1LL, settings); |
| 3442 | } |
| 3443 | |
| 3444 | void CheckOtherImpl::checkNegativeBitwiseShift() |
| 3445 | { |