summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-22 19:55:20 +0000
committerDan Gohman <gohman@apple.com>2010-04-22 19:55:20 +0000
commit620427d5a165d98d33ad6a5be2d01c3e8525c2f6 (patch)
tree96b8f068f28d57abb047e7bc445d00bfbd56220a /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
parentf1dabde404d2b2d6b4ca136f418f61f3b470039a (diff)
downloadllvm-620427d5a165d98d33ad6a5be2d01c3e8525c2f6.tar.gz
llvm-620427d5a165d98d33ad6a5be2d01c3e8525c2f6.tar.bz2
llvm-620427d5a165d98d33ad6a5be2d01c3e8525c2f6.tar.xz
Move PHINodesToUpdate out of SelectionDAGBuilder and into
FunctionLoweringInfo, as it isn't SelectionDAG-specific. This isn't completely natural, as PHI node state is not per-function but rather per-basic-block, however there's currently no other convenient per-basic-block state to group it with. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102109 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
index ad18850bac..bea7be9e23 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
@@ -271,10 +271,6 @@ public:
/// SwitchInst code generation information.
std::vector<BitTestBlock> BitTestCases;
- /// PHINodesToUpdate - A list of phi instructions whose operand list will
- /// be updated after processing the current basic block.
- std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
-
/// EdgeMapping - If an edge from CurMBB to any MBB is changed (e.g. due to
/// scheduler custom lowering), track the change here.
DenseMap<MachineBasicBlock*, MachineBasicBlock*> EdgeMapping;