Skip to content

Commit a71d319

Browse files
authored
Remove SymbolStringPtr deref in debugging output.
1 parent 0de822d commit a71d319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-jitlink/llvm-jitlink.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ static raw_ostream &
365365
operator<<(raw_ostream &OS, const Session::SymbolInfoMap &SIM) {
366366
OS << "Symbols:\n";
367367
for (auto &SKV : SIM)
368-
OS << " \"" << *(SKV.first) << "\" " << SKV.second << "\n";
368+
OS << " \"" << SKV.first << "\" " << SKV.second << "\n";
369369
return OS;
370370
}
371371

0 commit comments

Comments
 (0)