next up previous contents
Next: JumpIndirectStatement Up: Simple Control Flow Statements Previous: MultiWayBranchStatement   Contents


JumpStatement

A JumpStatement is equivalent to a ``goto'' in C or Fortran. It causes control to jump to the code specified by the target label.

    concrete JumpStatement : Statement
      {
        CodeLabelSymbol * reference target;
      };



David Heine
1999-11-22