[clang] 1587f6b - Bump the serialization major version number

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Wed May 4 06:08:08 PDT 2022


Author: Aaron Ballman
Date: 2022-05-04T09:07:57-04:00
New Revision: 1587f6bb3ca2cf83591f392f932007dd0fdb7b54

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

LOG: Bump the serialization major version number

This is a speculative fix for a build bot which does not put the LLVM
revision information into the PCH hash.

http://45.33.8.238/linux/75290/step_7.txt

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 d11c91368ee3f..1ed234e644e79 100644
--- a/clang/include/clang/Serialization/ASTBitCodes.h
+++ b/clang/include/clang/Serialization/ASTBitCodes.h
@@ -41,7 +41,7 @@ namespace serialization {
 /// Version 4 of AST files also requires that the version control branch and
 /// revision match exactly, since there is no backward compatibility of
 /// AST files at this time.
-const unsigned VERSION_MAJOR = 18;
+const unsigned VERSION_MAJOR = 19;
 
 /// AST file minor version number supported by this version of
 /// Clang.


        


More information about the cfe-commits mailing list