summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineModuleInfo.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-12-10 07:39:47 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-12-10 07:39:47 +0000
commit89b9372605db2ce3b0085c84089e389f7bc1fbdd (patch)
treec8b1b5ecc52c942feec78a10c8d65a90371ed4a0 /include/llvm/CodeGen/MachineModuleInfo.h
parentc2ef82861600bb476507362d721089fb96dbda6f (diff)
downloadllvm-89b9372605db2ce3b0085c84089e389f7bc1fbdd.tar.gz
llvm-89b9372605db2ce3b0085c84089e389f7bc1fbdd.tar.bz2
llvm-89b9372605db2ce3b0085c84089e389f7bc1fbdd.tar.xz
Fixed version of 121434 with no new memory leaks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineModuleInfo.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineModuleInfo.h b/include/llvm/CodeGen/MachineModuleInfo.h
index febb9dd990..9ea27b4b02 100644
--- a/include/llvm/CodeGen/MachineModuleInfo.h
+++ b/include/llvm/CodeGen/MachineModuleInfo.h
@@ -170,7 +170,8 @@ public:
VariableDbgInfoMapTy VariableDbgInfo;
MachineModuleInfo(); // DUMMY CONSTRUCTOR, DO NOT CALL.
- MachineModuleInfo(const MCAsmInfo &MAI); // Real constructor.
+ // Real constructor.
+ MachineModuleInfo(const MCAsmInfo &MAI, const TargetAsmInfo *TAI);
~MachineModuleInfo();
bool doInitialization();