================
@@ -738,6 +738,10 @@ 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>()) {
+ OS << "TypeInfoLValue";
+ } else if (B.is<DynamicAllocLValue>()) {
+ OS << "DynamicAllocLValue";
----------------
tbaederr wrote:
Would be good to print more information about them.
https://github.com/llvm/llvm-project/pull/135178
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits