Displaying 1 result from an estimated 1 matches for "c70afa4".
2014 Jan 22
2
[LLVMdev] [RFC] LTO: deallocating llvm::Module inside lto_codegen_add_module
...ymbol_name.
I propose that LTOCodeGenerator::addModule be changed to also deallocate the
(consumed and redundant) llvm::Module and llvm::TargetMachine objects left
behind in LTOModule. I.e., something akin to:
diff --git a/include/llvm/LTO/LTOModule.h b/include/llvm/LTO/LTOModule.h
index c70afa4..1180e58 100644
--- a/include/llvm/LTO/LTOModule.h
+++ b/include/llvm/LTO/LTOModule.h
@@ -164,6 +164,11 @@ public:
return _asm_undefines;
}
+ void destroyLLVMModule() {
+ _module.reset();
+ _target.reset();
+ }
+
private:
///...