Home | History | Annotate | Download | only in IR

Lines Matching refs:ResumeInst

662 //                        ResumeInst Implementation
665 ResumeInst::ResumeInst(const ResumeInst &RI)
667 OperandTraits<ResumeInst>::op_begin(this), 1) {
671 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore)
673 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
677 ResumeInst::ResumeInst(Value *Exn, BasicBlock *InsertAtEnd)
679 OperandTraits<ResumeInst>::op_begin(this), 1, InsertAtEnd) {
683 unsigned ResumeInst::getNumSuccessorsV() const {
687 void ResumeInst::setSuccessorV(unsigned idx, BasicBlock *NewSucc) {
688 llvm_unreachable("ResumeInst has no successors!");
691 BasicBlock *ResumeInst::getSuccessorV(unsigned idx) const {
692 llvm_unreachable("ResumeInst has no successors!");
3633 ResumeInst *ResumeInst::clone_impl() const {
3634 return new(1) ResumeInst(*this);