def resume(self, landingpad): """ Resume an in-flight exception. """ br = instructions.Branch(self.block, "resume", [landingpad]) self._set_terminator(br) return br
def branch(self, target): """ Unconditional branch to *target*. """ br = instructions.Branch(self.block, "br", [target]) self._set_terminator(br) return br