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 | 07fc26d63c492c3b81577b220766e64b2a96a338 (patch) | |
tree | 34946621802807c957edcb830cdea6cf7c0db15e /llvm/lib/CodeGen/MachineModuleInfo.cpp | |
parent | 273215733c5b84de012867c5743f0e5a87e9d31b (diff) | |
download | bcm5719-llvm-07fc26d63c492c3b81577b220766e64b2a96a338.tar.gz bcm5719-llvm-07fc26d63c492c3b81577b220766e64b2a96a338.zip |
the pointer MMI keeps will start out with object-file format specific stuff
llvm-svn: 82012
Diffstat (limited to 'llvm/lib/CodeGen/MachineModuleInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineModuleInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachineModuleInfo.cpp b/llvm/lib/CodeGen/MachineModuleInfo.cpp index b32ed81d1cb..0a8bf5a3d89 100644 --- a/llvm/lib/CodeGen/MachineModuleInfo.cpp +++ b/llvm/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. |