Searched defs:ResumeInst (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/
H A DInstructions.h2929 // ResumeInst Class
2933 /// ResumeInst - Resume the propagation of an exception.
2935 class ResumeInst : public TerminatorInst { class in inherits:TerminatorInst
2936 ResumeInst(const ResumeInst &RI);
2938 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=0);
2939 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
2941 virtual ResumeInst *clone_impl() const;
2943 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = 0) {
2944 return new(1) ResumeInst(Ex
[all...]
/external/llvm/lib/VMCore/
H A DInstructions.cpp662 // ResumeInst Implementation
665 ResumeInst::ResumeInst(const ResumeInst &RI) function in class:ResumeInst
667 OperandTraits<ResumeInst>::op_begin(this), 1) {
671 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) function in class:ResumeInst
673 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
677 ResumeInst::ResumeInst(Valu function in class:ResumeInst
[all...]

Completed in 58 milliseconds