Query on Warning 16

if I get a Warning 16 during Liking, does it necessaily mean that my function isnt being called(could it be possible that the function is being called indirectly). Can i remove the function from my source?

Is warning 16 related in any way to Warning 15 or any other Warnings.

Parents
  • The warning means that the function is not called, even indirectly*. The major concern behind this warning message is that this function's local variables are using up precious ram space. Is is best that the function is removed. The second best is to place a dummy call to the function in your main(so the overlayer can do its magic).

    It is a real pain that this function is not removed automatically, but what is, is.


    *I assume you did not locate this particular function at some absolute address.

Reply
  • The warning means that the function is not called, even indirectly*. The major concern behind this warning message is that this function's local variables are using up precious ram space. Is is best that the function is removed. The second best is to place a dummy call to the function in your main(so the overlayer can do its magic).

    It is a real pain that this function is not removed automatically, but what is, is.


    *I assume you did not locate this particular function at some absolute address.

Children
More questions in this forum