We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ef4510 commit c15218bCopy full SHA for c15218b
llvm/lib/ExecutionEngine/JITLink/JITLink.cpp
@@ -338,7 +338,8 @@ void LinkGraph::dump(raw_ostream &OS) {
338
OS << "\nExternal symbols:\n";
339
if (!external_symbols().empty()) {
340
for (auto *Sym : external_symbols())
341
- OS << " " << Sym->getAddress() << ": " << *Sym << "\n";
+ OS << " " << Sym->getAddress() << ": " << *Sym
342
+ << (Sym->isWeaklyReferenced() ? " (weakly referenced)" : "") << "\n";
343
} else
344
OS << " none\n";
345
}
0 commit comments