[clang] 3cd8196 - [clang][Interp][NFC] Declare Pointer::operator<< earlier

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 17 00:22:09 PDT 2023


Author: Timm Bäder
Date: 2023-08-17T09:21:51+02:00
New Revision: 3cd8196bc38c406329e9395f4cbb7cbb29a92d27

URL: https://github.com/llvm/llvm-project/commit/3cd8196bc38c406329e9395f4cbb7cbb29a92d27
DIFF: https://github.com/llvm/llvm-project/commit/3cd8196bc38c406329e9395f4cbb7cbb29a92d27.diff

LOG: [clang][Interp][NFC] Declare Pointer::operator<< earlier

So we can use it in Pointer.h as well when debugging.

Added: 
    

Modified: 
    clang/lib/AST/Interp/Pointer.h

Removed: 
    


################################################################################
diff  --git a/clang/lib/AST/Interp/Pointer.h b/clang/lib/AST/Interp/Pointer.h
index f8e3802d4a2299..8385b032c207b0 100644
--- a/clang/lib/AST/Interp/Pointer.h
+++ b/clang/lib/AST/Interp/Pointer.h
@@ -29,6 +29,9 @@ class DeadBlock;
 class Pointer;
 enum PrimType : unsigned;
 
+class Pointer;
+inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Pointer &P);
+
 /// A pointer to a memory block, live or dead.
 ///
 /// This object can be allocated into interpreter stack frames. If pointing to


        


More information about the cfe-commits mailing list