diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-04-05 02:23:33 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-04-05 02:23:33 +0000 |
| commit | ba79d72eab446e64d360e8263d77732b5e13d556 (patch) | |
| tree | 061b99fedc232841933b9b30708edd4c40eb72ca /include/llvm/CodeGen | |
| parent | d850ac79b57e6e0bf68ee93a94d0b3dcd9f6ca35 (diff) | |
selection dag doesn't need DwarfWriter, remove some tendrils.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
| -rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 8962bee02e..a96fa7ef3c 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -29,7 +29,6 @@ namespace llvm { class AliasAnalysis; -class DwarfWriter; class FunctionLoweringInfo; class MachineConstantPoolValue; class MachineFunction; @@ -123,7 +122,6 @@ class SelectionDAG { MachineFunction *MF; FunctionLoweringInfo &FLI; MachineModuleInfo *MMI; - DwarfWriter *DW; LLVMContext* Context; /// EntryNode - The starting token. @@ -182,7 +180,7 @@ public: /// init - Prepare this SelectionDAG to process code in the given /// MachineFunction. /// - void init(MachineFunction &mf, MachineModuleInfo *mmi, DwarfWriter *dw); + void init(MachineFunction &mf, MachineModuleInfo *mmi); /// clear - Clear state and free memory necessary to make this /// SelectionDAG ready to process a new block. @@ -194,7 +192,6 @@ public: TargetLowering &getTargetLoweringInfo() const { return TLI; } FunctionLoweringInfo &getFunctionLoweringInfo() const { return FLI; } MachineModuleInfo *getMachineModuleInfo() const { return MMI; } - DwarfWriter *getDwarfWriter() const { return DW; } LLVMContext *getContext() const {return Context; } /// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'. |
