summaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorCameron Zwarich <zwarich@apple.com>2010-12-05 19:58:57 +0000
committerCameron Zwarich <zwarich@apple.com>2010-12-05 19:58:57 +0000
commit120188605fd1e3228c65daf2c5cd6c7a62d6a335 (patch)
tree2e5109b5794e6010cde8a493c87c67076900fe5a /lib/CodeGen
parent2225dd81e91a24a8d61cac935dee237c7d5da2ed (diff)
downloadllvm-120188605fd1e3228c65daf2c5cd6c7a62d6a335.tar.gz
llvm-120188605fd1e3228c65daf2c5cd6c7a62d6a335.tar.bz2
llvm-120188605fd1e3228c65daf2c5cd6c7a62d6a335.tar.xz
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
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/PHIElimination.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/CodeGen/PHIElimination.h b/lib/CodeGen/PHIElimination.h
index 3f593898e1..3690732bcf 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<unsigned, unsigned> BBVRegPair;
typedef DenseMap<BBVRegPair, unsigned> VRegPHIUse;