[llvm-branch-commits] [clang] d6fd6e4 - [Serialization] Update DECL_LAST

Tom Stellard via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue Feb 25 08:31:31 PST 2025


Author: Chuanqi Xu
Date: 2025-02-25T08:31:12-08:00
New Revision: d6fd6e4d6acfab8744064b03f1a86e16dfe53ec6

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

LOG: [Serialization] Update DECL_LAST

Address post commit review at
https://github.com/llvm/llvm-project/pull/119333#pullrequestreview-2637471908

(cherry picked from commit 366daddfad9aa38ebb7d40055cf65f4ecb7dd6f9)

Added: 
    

Modified: 
    clang/include/clang/Serialization/ASTBitCodes.h

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/Serialization/ASTBitCodes.h b/clang/include/clang/Serialization/ASTBitCodes.h
index 1b56ed2c9776b..d60cb655aa261 100644
--- a/clang/include/clang/Serialization/ASTBitCodes.h
+++ b/clang/include/clang/Serialization/ASTBitCodes.h
@@ -1522,13 +1522,13 @@ enum DeclCode {
   /// An ImplicitConceptSpecializationDecl record.
   DECL_IMPLICIT_CONCEPT_SPECIALIZATION,
 
-  // A decls specilization record.
+  // A decls specialization record.
   DECL_SPECIALIZATIONS,
 
-  // A decls specilization record.
+  // A decls specialization record.
   DECL_PARTIAL_SPECIALIZATIONS,
 
-  DECL_LAST = DECL_IMPLICIT_CONCEPT_SPECIALIZATION
+  DECL_LAST = DECL_PARTIAL_SPECIALIZATIONS
 };
 
 /// Record codes for each kind of statement or expression.


        


More information about the llvm-branch-commits mailing list