Home | History | Annotate | Download | only in VMCore

Lines Matching refs:Resume

642   // Replace calls to "llvm.eh.resume" with the 'resume' instruction. Load the
644 Function *EHResume = M->getFunction("llvm.eh.resume");
648 CallInst *Resume = cast<CallInst>(EHResume->use_back());
649 BasicBlock *BB = Resume->getParent();
652 Builder.SetInsertPoint(BB, Resume);
656 Resume->getArgOperand(0), 0, "lpad.val");
657 LPadVal = Builder.CreateInsertValue(LPadVal, Resume->getArgOperand(1),
661 // Remove all instructions after the 'resume.'
662 BasicBlock::iterator I = Resume;