I want to set a breakpoint to the end of a function in Lauterbach.
I know that this can be achieved using Break.set sYmbol.EXIT(function_name).
Unfortunately, this isn't working.
Can you indicate another command for this ?
I want to set a breakpoint to the end of a function in Lauterbach.
I know that this can be achieved using Break.set sYmbol.EXIT(function_name).
Unfortunately, this isn't working.
Can you indicate another command for this ?
To set breakpoint at the end of the function, you can use g.r command. This command will run the program till the return statement of the function.
You should use BREAK.SET sYmbol.END(function_name)
, I had the same error and this fixed it.