summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-19 23:34:15 +0000
committerDan Gohman <gohman@apple.com>2010-04-19 23:34:15 +0000
commit68b7960c1a09b047dbac8eab185d2ca0dd7a2134 (patch)
tree444cf20512921af0d58fdc2ed5332d93fadb45f0 /include
parent66db3a0f10e96ae190c8a46a1a8d5242928d068c (diff)
downloadllvm-68b7960c1a09b047dbac8eab185d2ca0dd7a2134.tar.gz
llvm-68b7960c1a09b047dbac8eab185d2ca0dd7a2134.tar.bz2
llvm-68b7960c1a09b047dbac8eab185d2ca0dd7a2134.tar.xz
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')
-rw-r--r--include/llvm/CodeGen/SelectionDAGISel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h
index 8fddb54452..03d9bf5a9a 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();