diff options
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/ExecutionEngine/Orc/Core.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/Core.cpp b/llvm/lib/ExecutionEngine/Orc/Core.cpp index 6c7a952c648..df4d0028a4a 100644 --- a/llvm/lib/ExecutionEngine/Orc/Core.cpp +++ b/llvm/lib/ExecutionEngine/Orc/Core.cpp @@ -1381,6 +1381,10 @@ void JITDylib::dump(raw_ostream &OS) { OS << "JITDylib \"" << JITDylibName << "\" (ES: " << format("0x%016x", reinterpret_cast<uintptr_t>(&ES)) << "):\n" + << "Search order: ["; + for (auto *JD : SearchOrder) + OS << " \"" << JD->getName() << "\""; + OS << " ]\n" << "Symbol table:\n"; for (auto &KV : Symbols) { |

