llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-clang Author: Timm Baeder (tbaederr) <details> <summary>Changes</summary> So we know whether a pointer is a dummy and alive. --- Full diff: https://github.com/llvm/llvm-project/pull/183691.diff 1 Files Affected: - (modified) clang/lib/AST/ByteCode/Pointer.h (+4) ``````````diff diff --git a/clang/lib/AST/ByteCode/Pointer.h b/clang/lib/AST/ByteCode/Pointer.h index 5c3f98ad01eb4..010e917de81b2 100644 --- a/clang/lib/AST/ByteCode/Pointer.h +++ b/clang/lib/AST/ByteCode/Pointer.h @@ -875,6 +875,10 @@ inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Pointer &P) { else OS << " index " << P.getIndex(); } + if (P.isBlockPointer() && P.block() && P.block()->isDummy()) + OS << " dummy"; + if (!P.isLive()) + OS << " dead"; return OS; } `````````` </details> https://github.com/llvm/llvm-project/pull/183691 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
