Textual.Terminator
type node_call = {
label : NodeName.t;
ssa_args : Exp.t list;
}
type t =
| If of {
bexp : BoolExp.t;
then_ : t;
else_ : t;
| Ret of Exp.t
| Jump of node_call list
non empty list
| Throw of Exp.t
| Unreachable