Skip to a specific line number.
goto line_number
line_number |
The line number at which you want to resume execution. |
This command skips over the execution of a portion of source code to a specific line number.
Use this command with care or not at all.
Even if the code was compiled without optimization, the compiler may have reused registers and moved instructions such that source lines and actual instructions do not completely match up. So skipping instructions with this command may not lead to the result that you expect.
Copyright © 2001-2011, Intel Corporation. All rights reserved.