diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-16 05:26:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-16 05:26:00 +0000 |
commit | f18545550e1cfbe3f47afb6a9a58405416258e3b (patch) | |
tree | 6d04b4c3c7e1f4138705147d35c2713cfdd3c848 /lib/CodeGen/MachineModuleInfo.cpp | |
parent | e1e533437aa4b53d7a70bacd4fa0fdfe0803c78e (diff) |
the pointer MMI keeps will start out with object-file format specific stuff
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82012 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r-- | lib/CodeGen/MachineModuleInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/MachineModuleInfo.cpp b/lib/CodeGen/MachineModuleInfo.cpp index b32ed81d1c..0a8bf5a3d8 100644 --- a/lib/CodeGen/MachineModuleInfo.cpp +++ b/lib/CodeGen/MachineModuleInfo.cpp @@ -39,7 +39,7 @@ MachineModuleInfoImpl::~MachineModuleInfoImpl() {} MachineModuleInfo::MachineModuleInfo() : ImmutablePass(&ID) -, TargetMMI(0) +, ObjFileMMI(0) , CallsEHReturn(0) , CallsUnwindInit(0) , DbgInfoAvailable(false) { @@ -48,7 +48,7 @@ MachineModuleInfo::MachineModuleInfo() } MachineModuleInfo::~MachineModuleInfo() { - delete TargetMMI; + delete ObjFileMMI; } /// doInitialization - Initialize the state for a new module. |