================
@@ -1259,6 +1259,7 @@ void ASTDeclWriter::VisitVarDecl(VarDecl *D) {
     VarDeclBits.addBit(D->isConstexpr());
     VarDeclBits.addBit(D->isInitCapture());
     VarDeclBits.addBit(D->isPreviousDeclInSameBlockScope());
+    VarDeclBits.addBit(D->hasInitWithSideEffects());
----------------
benlangmuir wrote:

I think you need to update the fixed width here 
https://github.com/llvm/llvm-project/blob/4084ffcf1e69b962e864aa138bb54dabbcec912f/clang/lib/Serialization/ASTWriterDecl.cpp#L2743.
  That's likely what's causing the CI test failures.

https://github.com/llvm/llvm-project/pull/143739
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to