C5902: Shift count is zero

[WARNING]

Description

The Compiler has detected an operation which results in a shift count of zero. The operation is optimized. This message may be generated during tree optimizations (Option -Ont to switch it off).

Example
  i = j<<(j-j);  // optimized to i = j;

  
Tips

If it is a programming error, correct the statement.