[clang][Interp][NFC] Fix allocateLocalPrimitive parameter name
authorTimm Bäder <tbaeder@redhat.com>
Thu, 4 May 2023 10:57:37 +0000 (12:57 +0200)
committerTimm Bäder <tbaeder@redhat.com>
Thu, 4 May 2023 11:45:14 +0000 (13:45 +0200)
This is passed on to Program::createDescriptor, where it is used as a
value for IsConst.

clang/lib/AST/Interp/ByteCodeExprGen.cpp
clang/lib/AST/Interp/ByteCodeExprGen.h

index ca9d345..df7c4a7 100644 (file)
@@ -831,7 +831,7 @@ bool ByteCodeExprGen<Emitter>::VisitMaterializeTemporaryExpr(
   // For everyhing else, use local variables.
   if (SubExprT) {
     if (std::optional<unsigned> LocalIndex = allocateLocalPrimitive(
-            SubExpr, *SubExprT, /*IsMutable=*/true, /*IsExtended=*/true)) {
+            SubExpr, *SubExprT, /*IsConst=*/true, /*IsExtended=*/true)) {
       if (!this->visitInitializer(SubExpr))
         return false;
       this->emitSetLocal(*SubExprT, *LocalIndex, E);
index a3aab16..52a8eca 100644 (file)
@@ -185,7 +185,7 @@ protected:
                         llvm::function_ref<bool(const Expr *)> V);
 
   /// Creates a local primitive value.
-  unsigned allocateLocalPrimitive(DeclTy &&Decl, PrimType Ty, bool IsMutable,
+  unsigned allocateLocalPrimitive(DeclTy &&Decl, PrimType Ty, bool IsConst,
                                   bool IsExtended = false);
 
   /// Allocates a space storing a local given its type.