diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-06-15 18:53:34 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-06-15 18:53:34 +0000 |
commit | c964585ff8ba6aab8149a6ada04cf795ef1721b9 (patch) | |
tree | 9e7a9bd9618d84687a6d14fea44c343f6d924eee /llvm/lib | |
parent | 64f78a310da44061af6461c68aa94565dceeb2fe (diff) | |
download | bcm5719-llvm-c964585ff8ba6aab8149a6ada04cf795ef1721b9.tar.gz bcm5719-llvm-c964585ff8ba6aab8149a6ada04cf795ef1721b9.zip |
fix naming
llvm-svn: 106024
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SjLjEHPrepare.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/SjLjEHPrepare.cpp b/llvm/lib/CodeGen/SjLjEHPrepare.cpp index 825376d4676..a002ef8a628 100644 --- a/llvm/lib/CodeGen/SjLjEHPrepare.cpp +++ b/llvm/lib/CodeGen/SjLjEHPrepare.cpp @@ -71,7 +71,7 @@ namespace { void insertCallSiteStore(Instruction *I, int Number, Value *CallSite); void markInvokeCallSite(InvokeInst *II, int InvokeNo, Value *CallSite, SwitchInst *CatchSwitch); - void splitLiveRangesLiveAcrossInvokes(SmallVector<InvokeInst*,16> &Invokes); + void splitLiveRangesAcrossInvokes(SmallVector<InvokeInst*,16> &Invokes); bool insertSjLjEHSupport(Function &F); }; } // end anonymous namespace @@ -182,7 +182,7 @@ static void MarkBlocksLiveIn(BasicBlock *BB, std::set<BasicBlock*> &LiveBBs) { /// FIXME: Move this function to a common utility file (Local.cpp?) so /// both SjLj and LowerInvoke can use it. void SjLjEHPass:: -splitLiveRangesLiveAcrossInvokes(SmallVector<InvokeInst*,16> &Invokes) { +splitLiveRangesAcrossInvokes(SmallVector<InvokeInst*,16> &Invokes) { // First step, split all critical edges from invoke instructions. for (unsigned i = 0, e = Invokes.size(); i != e; ++i) { InvokeInst *II = Invokes[i]; @@ -364,7 +364,7 @@ bool SjLjEHPass::insertSjLjEHSupport(Function &F) { // we spill into a stack location, guaranteeing that there is nothing live // across the unwind edge. This process also splits all critical edges // coming out of invoke's. - splitLiveRangesLiveAcrossInvokes(Invokes); + splitLiveRangesAcrossInvokes(Invokes); BasicBlock *EntryBB = F.begin(); // Create an alloca for the incoming jump buffer ptr and the new jump buffer |