|
10.3.7 GOTO ChasingThe following code is often generated by IF-THEN_ELSE statements or CASE statements: GOTO LabelA GOTO LabelB ... ... LabelA: GOTO LabelB LabelA: GOTO LabelB This presumes that A and B really are the same variable; that is, they are not both needed later. |