From 959030a38cefa7a311c939f94dc89c87ca03cb18 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Wed, 1 Oct 2014 21:57:47 +0000 Subject: [PATCH] [MCJIT] Don't crash in debugging output for sections that aren't emitted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218836 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp index 65110752e6c..b4f14d3dada 100644 --- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp +++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp @@ -45,6 +45,11 @@ void RuntimeDyldImpl::deregisterEHFrames() {} static void dumpSectionMemory(const SectionEntry &S, StringRef State) { dbgs() << "----- Contents of section " << S.Name << " " << State << " -----"; + if (S.Address == nullptr) { + dbgs() << "\n
\n"; + return; + } + const unsigned ColsPerRow = 16; uint8_t *DataAddr = S.Address; -- 2.34.1