diff options
Diffstat (limited to 'lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp')
| -rw-r--r-- | lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp index 4fbdd22b84b..890d9f996be 100644 --- a/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp +++ b/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp @@ -327,6 +327,10 @@ bool JITLoaderGDB::ReadJITDescriptorImpl(bool all_entries) {            FileSpec(jit_name), symbolfile_addr, symbolfile_size);        if (module_sp && module_sp->GetObjectFile()) { +        // Object formats (like ELF) have no representation for a JIT type. +        // We will get it wrong, if we deduce it from the header. +        module_sp->GetObjectFile()->SetType(ObjectFile::eTypeJIT); +          // load the symbol table right away          module_sp->GetObjectFile()->GetSymtab();  | 

