[vmkit-commits] [vmkit] r96296 - /vmkit/trunk/lib/Mvm/Compiler/JIT.cpp

Nicolas Geoffray nicolas.geoffray at lip6.fr
Mon Feb 15 15:22:38 PST 2010


Author: geoffray
Date: Mon Feb 15 17:22:38 2010
New Revision: 96296

URL: http://llvm.org/viewvc/llvm-project?rev=96296&view=rev
Log:
Don't interact with the debugger, it leaks memory when there is none.


Modified:
    vmkit/trunk/lib/Mvm/Compiler/JIT.cpp

Modified: vmkit/trunk/lib/Mvm/Compiler/JIT.cpp
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/Mvm/Compiler/JIT.cpp?rev=96296&r1=96295&r2=96296&view=diff

==============================================================================
--- vmkit/trunk/lib/Mvm/Compiler/JIT.cpp (original)
+++ vmkit/trunk/lib/Mvm/Compiler/JIT.cpp Mon Feb 15 17:22:38 2010
@@ -128,6 +128,7 @@
   
   llvm::NoFramePointerElim = true;
   llvm::DisablePrettyStackTrace = true;
+  llvm::JITEmitDebugInfo = false;
 #if DWARF_EXCEPTIONS
   llvm::DwarfExceptionHandling = true;
 #else





More information about the vmkit-commits mailing list