[llvm-branch-commits] [clang] release/20.x: [Serialization] Update DECL_LAST (PR #128690)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Feb 25 02:28:04 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang-modules
@llvm/pr-subscribers-clang
Author: None (llvmbot)
<details>
<summary>Changes</summary>
Backport 366daddfad9aa38ebb7d40055cf65f4ecb7dd6f9
Requested by: @<!-- -->ChuanqiXu9
---
Full diff: https://github.com/llvm/llvm-project/pull/128690.diff
1 Files Affected:
- (modified) clang/include/clang/Serialization/ASTBitCodes.h (+3-3)
``````````diff
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.
``````````
</details>
https://github.com/llvm/llvm-project/pull/128690
More information about the llvm-branch-commits
mailing list