[clang] 38ca73d - [clang][bytecode] Give typeinfo APValues an LValuePath (#135948)

via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 16 04:37:06 PDT 2025


Author: Timm Baeder
Date: 2025-04-16T13:37:03+02:00
New Revision: 38ca73db223031b1831cd24ef66ddb6a8546a16c

URL: https://github.com/llvm/llvm-project/commit/38ca73db223031b1831cd24ef66ddb6a8546a16c
DIFF: https://github.com/llvm/llvm-project/commit/38ca73db223031b1831cd24ef66ddb6a8546a16c.diff

LOG: [clang][bytecode] Give typeinfo APValues an LValuePath (#135948)

That's what the current interpreter does as well.

Added: 
    

Modified: 
    clang/lib/AST/ByteCode/Pointer.cpp

Removed: 
    


################################################################################
diff  --git a/clang/lib/AST/ByteCode/Pointer.cpp b/clang/lib/AST/ByteCode/Pointer.cpp
index c43c0a063bd9e..686ec381d232a 100644
--- a/clang/lib/AST/ByteCode/Pointer.cpp
+++ b/clang/lib/AST/ByteCode/Pointer.cpp
@@ -167,7 +167,8 @@ APValue Pointer::toAPValue(const ASTContext &ASTCtx) const {
     return APValue(
         APValue::LValueBase::getTypeInfo(
             TypeInfo, QualType(PointeeStorage.Typeid.TypeInfoType, 0)),
-        CharUnits::Zero(), APValue::NoLValuePath{});
+        CharUnits::Zero(), {},
+        /*OnePastTheEnd=*/false, /*IsNull=*/false);
   }
 
   // Build the lvalue base from the block.


        


More information about the cfe-commits mailing list