Skip to content

Commit 0de822d

Browse files
authored
Remove SymbolStringPtr deref operation in debugging output.
1 parent 473c925 commit 0de822d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ Error addFunctionPointerRelocationsToCurrentSymbol(jitlink::Symbol &Sym,
398398
auto SymSize = Sym.getSize() ? Sym.getSize() : B.getSize() - Sym.getOffset();
399399
auto Content = ArrayRef(SymStartInBlock, SymSize);
400400

401-
LLVM_DEBUG(dbgs() << "Adding self-relocations to " << *Sym.getName() << "\n");
401+
LLVM_DEBUG(dbgs() << "Adding self-relocations to " << Sym.getName() << "\n");
402402

403403
SmallDenseSet<uintptr_t, 8> ExistingRelocations;
404404
for (auto &E : B.edges()) {

0 commit comments

Comments
 (0)