I forgot to actually remove the FindCopyInsertPoint() declaration from
authorCameron Zwarich <zwarich@apple.com>
Sun, 5 Dec 2010 19:58:57 +0000 (19:58 +0000)
committerCameron Zwarich <zwarich@apple.com>
Sun, 5 Dec 2010 19:58:57 +0000 (19:58 +0000)
PHIElimination.h.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120953 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/PHIElimination.h

index 3f593898e1a1cee5a8f12221fe52ba07a4fac43b..3690732bcfac201567d103125f1da0345ca7be7d 100644 (file)
@@ -55,14 +55,6 @@ namespace llvm {
     bool SplitPHIEdges(MachineFunction &MF, MachineBasicBlock &MBB,
                        LiveVariables &LV, MachineLoopInfo *MLI);
 
-    /// 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
-    /// might jump out of the basic block.
-    MachineBasicBlock::iterator FindCopyInsertPoint(MachineBasicBlock &MBB,
-                                                    MachineBasicBlock &SuccMBB,
-                                                    unsigned SrcReg);
-
     typedef std::pair<unsigned, unsigned> BBVRegPair;
     typedef DenseMap<BBVRegPair, unsigned> VRegPHIUse;