Skip to content

Commit

Permalink
[clang][Interp][NFC] Print qualified name of Descriptor sources
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaederr committed Mar 17, 2024
1 parent a4b39f6 commit dff3e28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/lib/AST/Interp/Disasm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ LLVM_DUMP_METHOD void Descriptor::dump(llvm::raw_ostream &OS) const {
{
ColorScope SC(OS, true, {llvm::raw_ostream::BLUE, true});
if (const auto *ND = dyn_cast_if_present<NamedDecl>(asDecl()))
OS << ND->getName();
ND->printQualifiedName(OS);
else if (asExpr())
OS << "expr (TODO)";
}
Expand Down

0 comments on commit dff3e28

Please sign in to comment.