[llvm-commits] [llvm] r120953 - /llvm/trunk/lib/CodeGen/PHIElimination.h

Cameron Zwarich zwarich at apple.com
Sun Dec 5 11:58:57 PST 2010


Author: zwarich
Date: Sun Dec  5 13:58:57 2010
New Revision: 120953

URL: http://llvm.org/viewvc/llvm-project?rev=120953&view=rev
Log:
I forgot to actually remove the FindCopyInsertPoint() declaration from
PHIElimination.h.

Modified:
    llvm/trunk/lib/CodeGen/PHIElimination.h

Modified: llvm/trunk/lib/CodeGen/PHIElimination.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/PHIElimination.h?rev=120953&r1=120952&r2=120953&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/PHIElimination.h (original)
+++ llvm/trunk/lib/CodeGen/PHIElimination.h Sun Dec  5 13:58:57 2010
@@ -55,14 +55,6 @@
     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;
 





More information about the llvm-commits mailing list