CFG: goto Statement

The CFG for an example goto statement is shown above. Note that the statement following the goto in the example code is not reachable.

Example

L:
    i = x + 2;
    goto L;
    ...
diagram: CFG for example code

Browse