diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-22 19:55:20 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-22 19:55:20 +0000 |
commit | fd812541905576a21116fde706ad5eb9739a197d (patch) | |
tree | 03415d835042486dc71d3ae9ade924925daa6237 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | |
parent | 8c12dc4351be21ba2472abdbd985f99b4847eabd (diff) | |
download | bcm5719-llvm-fd812541905576a21116fde706ad5eb9739a197d.tar.gz bcm5719-llvm-fd812541905576a21116fde706ad5eb9739a197d.zip |
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.
llvm-svn: 102109
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index ad18850bacd..bea7be9e23f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/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; |