C5905: Multiplication with one

[WARNING]

Description

The Compiler has detected a multiplication with one which is optimized. This message may be generated during tree optimizations (Option -Ont to switch it off).

Example
  i = j*1;  // optimized to i = j;

  
Tips

If it is a programming error, correct the statement.