================
@@ -5232,6 +5233,15 @@ void ASTWriter::WriteModuleFileExtension(Sema &SemaRef,
Stream.ExitBlock();
}
+void ASTWriter::WriteRISCVIntrinsicPragmas(Sema &SemaRef) {
+ RecordData Record;
+ Record.push_back(SemaRef.RISCV().DeclareRVVBuiltins);
+ Record.push_back(SemaRef.RISCV().DeclareSiFiveVectorBuiltins);
+ Record.push_back(SemaRef.RISCV().DeclareAndesVectorBuiltins);
+ Record.push_back(Record.size());
----------------
topperc wrote:
Why is the size pushed last? Why not first?
https://github.com/llvm/llvm-project/pull/171981
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits