diff --git a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp index ea9d09fffc7e..379662462147 100644 --- a/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp +++ b/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp @@ -490,13 +490,13 @@ namespace { /// deallocateFunctionBody - Deallocate all memory for the specified /// function body. void deallocateFunctionBody(void *Body) { - deallocateBlock(Body); + if (Body) deallocateBlock(Body); } /// deallocateExceptionTable - Deallocate memory for the specified /// exception table. void deallocateExceptionTable(void *ET) { - deallocateBlock(ET); + if (ET) deallocateBlock(ET); } /// setMemoryWritable - When code generation is in progress,