mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
s/getInnerUnwindDestNewEH/getInnerUnwindDest/g
llvm-svn: 149317
This commit is contained in:
parent
6a5ff9da71
commit
1be31fd0b1
@ -291,8 +291,7 @@ namespace {
|
||||
return OuterSelector;
|
||||
}
|
||||
|
||||
// FIXME: New EH - Rename when new EH is turned on.
|
||||
BasicBlock *getInnerUnwindDestNewEH();
|
||||
BasicBlock *getInnerUnwindDest();
|
||||
|
||||
LandingPadInst *getLandingPadInst() const { return CallerLPad; }
|
||||
|
||||
@ -321,7 +320,7 @@ namespace {
|
||||
}
|
||||
|
||||
/// getInnerUnwindDest - Get or create a target for the branch from ResumeInsts.
|
||||
BasicBlock *InvokeInliningInfo::getInnerUnwindDestNewEH() {
|
||||
BasicBlock *InvokeInliningInfo::getInnerUnwindDest() {
|
||||
if (InnerResumeDest) return InnerResumeDest;
|
||||
|
||||
// Split the landing pad.
|
||||
@ -360,7 +359,7 @@ BasicBlock *InvokeInliningInfo::getInnerUnwindDestNewEH() {
|
||||
/// branch. When there is more than one predecessor, we need to split the
|
||||
/// landing pad block after the landingpad instruction and jump to there.
|
||||
void InvokeInliningInfo::forwardResume(ResumeInst *RI) {
|
||||
BasicBlock *Dest = getInnerUnwindDestNewEH();
|
||||
BasicBlock *Dest = getInnerUnwindDest();
|
||||
BasicBlock *Src = RI->getParent();
|
||||
|
||||
BranchInst::Create(Dest, Src);
|
||||
|
Loading…
x
Reference in New Issue
Block a user