Skip to content

Commit dff3e28

Browse files
committed
[clang][Interp][NFC] Print qualified name of Descriptor sources
1 parent a4b39f6 commit dff3e28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/AST/Interp/Disasm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ LLVM_DUMP_METHOD void Descriptor::dump(llvm::raw_ostream &OS) const {
183183
{
184184
ColorScope SC(OS, true, {llvm::raw_ostream::BLUE, true});
185185
if (const auto *ND = dyn_cast_if_present<NamedDecl>(asDecl()))
186-
OS << ND->getName();
186+
ND->printQualifiedName(OS);
187187
else if (asExpr())
188188
OS << "expr (TODO)";
189189
}

0 commit comments

Comments
 (0)