Issues a warning message when a function that returns a value is missing a return statement.
#pragma warn_missingreturn on | off | reset
An example is shown in the following figure.
#pragma warn_missingreturn on int func() { /* WARNING: no return statement. */ }