C5901: Result is one

[WARNING]

Description

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

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

  
Tips

If it is a programming error, correct the statement.