[clang] [clang][ast]: Add DynamicAllocLValue and TypeInfoLValue support to APValue::dump(). (PR #135178)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 14 02:21:21 PDT 2025
================
@@ -738,6 +738,15 @@ void TextNodeDumper::Visit(const APValue &Value, QualType Ty) {
else if (const auto *BE = B.dyn_cast<const Expr *>()) {
OS << BE->getStmtClassName() << ' ';
dumpPointer(BE);
+ } else if (B.is<TypeInfoLValue>()) {
----------------
YLChenZ wrote:
Done.
https://github.com/llvm/llvm-project/pull/135178
More information about the cfe-commits
mailing list