Home | History | Annotate | Download | only in Utils

Lines Matching refs:LPad

577   LandingPadInst *LPad = OrigBB->getLandingPadInst();
578 Instruction *Clone1 = LPad->clone();
579 Clone1->setName(Twine("lpad") + Suffix1);
583 Instruction *Clone2 = LPad->clone();
584 Clone2->setName(Twine("lpad") + Suffix2);
588 PHINode *PN = PHINode::Create(LPad->getType(), 2, "lpad.phi", LPad);
591 LPad->replaceAllUsesWith(PN);
592 LPad->eraseFromParent();
596 LPad->replaceAllUsesWith(Clone1);
597 LPad->eraseFromParent();