C5918: Removed dead goto

[WARNING]

Description

The Compiler has detected that there is goto jumping to a just following label. This message may be generated during tree optimizations (Option -Ont to switch it off).

Example
    goto Label; // message C5918 here ...

  
    Label:

  
    ...

  
Tips

If you want to avoid this optimization, you can declare the variable as volatile.