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 fc3b267 commit 2a35d59Copy full SHA for 2a35d59
llvm/lib/ExecutionEngine/JITLink/MachOLinkGraphBuilder.cpp
@@ -299,8 +299,9 @@ Error MachOLinkGraphBuilder::createNormalizedSymbols() {
299
return NSec.takeError();
300
301
if (Value < NSec->Address || Value > NSec->Address + NSec->Size)
302
- return make_error<JITLinkError>("Symbol address does not fall within "
303
- "section");
+ return make_error<JITLinkError>("Address " + formatv("{0:x}", Value) +
+ " for symbol " + *Name +
304
+ " does not fall within section");
305
306
if (!NSec->GraphSection) {
307
LLVM_DEBUG({
0 commit comments