aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/SelectionDAG.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-04-05 06:19:28 +0000
committerChris Lattner <sabre@nondot.org>2010-04-05 06:19:28 +0000
commit512063dd0f91a76b9dd904dfff72a52b4d09e89f (patch)
tree269a1975e6d1e57ba0151a225524169fe1f4a950 /include/llvm/CodeGen/SelectionDAG.h
parentd2c4f19a9fd13790ee48ce182c1163476e2cd762 (diff)
downloadexternal_llvm-512063dd0f91a76b9dd904dfff72a52b4d09e89f.tar.gz
external_llvm-512063dd0f91a76b9dd904dfff72a52b4d09e89f.tar.bz2
external_llvm-512063dd0f91a76b9dd904dfff72a52b4d09e89f.zip
remove the now-redundant MMI pointer in SelectionDAG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100419 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAG.h')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index c587e5fcf1..5dd0aa8705 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -32,7 +32,6 @@ class AliasAnalysis;
class FunctionLoweringInfo;
class MachineConstantPoolValue;
class MachineFunction;
-class MachineModuleInfo;
class MDNode;
class SDNodeOrdering;
class SDDbgValue;
@@ -121,8 +120,7 @@ class SelectionDAG {
TargetLowering &TLI;
MachineFunction *MF;
FunctionLoweringInfo &FLI;
- MachineModuleInfo *MMI;
- LLVMContext* Context;
+ LLVMContext *Context;
/// EntryNode - The starting token.
SDNode EntryNode;
@@ -191,7 +189,6 @@ public:
const TargetMachine &getTarget() const;
TargetLowering &getTargetLoweringInfo() const { return TLI; }
FunctionLoweringInfo &getFunctionLoweringInfo() const { return FLI; }
- MachineModuleInfo *getMachineModuleInfo() const { return MMI; }
LLVMContext *getContext() const {return Context; }
/// viewGraph - Pop up a GraphViz/gv window with the DAG rendered using 'dot'.