diff options
author | Cameron Zwarich <zwarich@apple.com> | 2010-12-05 19:54:23 +0000 |
---|---|---|
committer | Cameron Zwarich <zwarich@apple.com> | 2010-12-05 19:54:23 +0000 |
commit | 8d1695589c831ee7dde6ba96e684208b5ae0ef62 (patch) | |
tree | f91d0efbb2e3af5cbe5b79710ddb7b769727b2e6 /llvm/lib | |
parent | da592a9e410760eb2fef46647347901557713e20 (diff) | |
download | bcm5719-llvm-8d1695589c831ee7dde6ba96e684208b5ae0ef62.tar.gz bcm5719-llvm-8d1695589c831ee7dde6ba96e684208b5ae0ef62.zip |
Remove the SplitCriticalEdge() method declaration from PHIElimination.h. At one
time, this method existed, but now PHIElimination uses the method of the same
name on MachineBasicBlock.
llvm-svn: 120952
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/PHIElimination.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/CodeGen/PHIElimination.h b/llvm/lib/CodeGen/PHIElimination.h index 60effc21762..3f593898e1a 100644 --- a/llvm/lib/CodeGen/PHIElimination.h +++ b/llvm/lib/CodeGen/PHIElimination.h @@ -55,12 +55,6 @@ namespace llvm { bool SplitPHIEdges(MachineFunction &MF, MachineBasicBlock &MBB, LiveVariables &LV, MachineLoopInfo *MLI); - /// SplitCriticalEdge - Split a critical edge from A to B by - /// inserting a new MBB. Update branches in A and PHI instructions - /// in B. Return the new block. - MachineBasicBlock *SplitCriticalEdge(MachineBasicBlock *A, - MachineBasicBlock *B); - /// FindCopyInsertPoint - Find a safe place in MBB to insert a copy from /// SrcReg when following the CFG edge to SuccMBB. This needs to be after /// any def of SrcReg, but before any subsequent point where control flow |