From: Cameron Zwarich Date: Sun, 5 Dec 2010 19:58:57 +0000 (+0000) Subject: I forgot to actually remove the FindCopyInsertPoint() declaration from X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=120188605fd1e3228c65daf2c5cd6c7a62d6a335;p=oota-llvm.git I forgot to actually remove the FindCopyInsertPoint() declaration from PHIElimination.h. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120953 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/PHIElimination.h b/lib/CodeGen/PHIElimination.h index 3f593898e1a..3690732bcfa 100644 --- a/lib/CodeGen/PHIElimination.h +++ b/lib/CodeGen/PHIElimination.h @@ -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 BBVRegPair; typedef DenseMap VRegPHIUse;