Skip to content

Commit

Permalink
tweak the type of quotes for functions in llvm code output (#40869)
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored May 19, 2021
1 parent 743a378 commit 6f867eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/disasm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ void DILineInfoPrinter::emit_lineinfo(raw_ostream &Out, std::vector<DILineInfo>
if (frame.Line != UINT_MAX && frame.Line != 0)
Out << ":" << frame.Line;
StringRef method = StringRef(frame.FunctionName).rtrim(';');
Out << " within `" << method << "'";
Out << " within `" << method << "`";
if (collapse_recursive) {
while (nctx < nframes) {
const DILineInfo &frame = DI.at(nframes - 1 - nctx);
Expand Down

0 comments on commit 6f867eb

Please sign in to comment.