Skip to content

Commit 8d3abc9

Browse files
committed
[clang][Interp][NFC] Dump expression address
1 parent 40a5a86 commit 8d3abc9

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
@@ -205,7 +205,7 @@ LLVM_DUMP_METHOD void Descriptor::dump(llvm::raw_ostream &OS) const {
205205
if (const auto *ND = dyn_cast_if_present<NamedDecl>(asDecl()))
206206
ND->printQualifiedName(OS);
207207
else if (asExpr())
208-
OS << "expr (TODO)";
208+
OS << "Expr " << (const void *)asExpr();
209209
}
210210

211211
// Print a few interesting bits about the descriptor.

0 commit comments

Comments
 (0)