diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-19 23:34:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-19 23:34:15 +0000 |
commit | 68b7960c1a09b047dbac8eab185d2ca0dd7a2134 (patch) | |
tree | 444cf20512921af0d58fdc2ed5332d93fadb45f0 /include/llvm | |
parent | 66db3a0f10e96ae190c8a46a1a8d5242928d068c (diff) | |
download | external_llvm-68b7960c1a09b047dbac8eab185d2ca0dd7a2134.zip external_llvm-68b7960c1a09b047dbac8eab185d2ca0dd7a2134.tar.gz external_llvm-68b7960c1a09b047dbac8eab185d2ca0dd7a2134.tar.bz2 |
Revert 101825, which is causing trouble.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101832 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGISel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h index 8fddb54..03d9bf5 100644 --- a/include/llvm/CodeGen/SelectionDAGISel.h +++ b/include/llvm/CodeGen/SelectionDAGISel.h @@ -46,6 +46,7 @@ public: MachineRegisterInfo *RegInfo; SelectionDAG *CurDAG; SelectionDAGBuilder *SDB; + MachineBasicBlock *BB; AliasAnalysis *AA; GCFunctionInfo *GFI; CodeGenOpt::Level OptLevel; @@ -282,14 +283,13 @@ private: void PrepareEHLandingPad(MachineBasicBlock *BB); void SelectAllBasicBlocks(const Function &Fn); - void FinishBasicBlock(MachineBasicBlock *BB); + void FinishBasicBlock(); - void SelectBasicBlock(MachineBasicBlock *BB, - const BasicBlock *LLVMBB, + void SelectBasicBlock(const BasicBlock *LLVMBB, BasicBlock::const_iterator Begin, BasicBlock::const_iterator End, bool &HadTailCall); - void CodeGenAndEmitDAG(MachineBasicBlock *BB); + void CodeGenAndEmitDAG(); void LowerArguments(const BasicBlock *BB); void ShrinkDemandedOps(); |