File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ const uint16_t SWIFTMODULE_VERSION_MAJOR = 0;
5858// / describe what change you made. The content of this comment isn't important;
5959// / it just ensures a conflict if two people change the module format.
6060// / Don't worry about adhering to the 80-column limit for this line.
61- const uint16_t SWIFTMODULE_VERSION_MINOR = 898 ; // interface-compiler-version
61+ const uint16_t SWIFTMODULE_VERSION_MINOR = 899 ; // Builtin.FixedArray serialize
6262
6363// / A standard hash seed used for all string hashes in a serialized module.
6464// /
Original file line number Diff line number Diff line change @@ -6134,6 +6134,7 @@ void Serializer::writeAllDeclsAndTypes() {
61346134 BCBlockRAII restoreBlock (Out, DECLS_AND_TYPES_BLOCK_ID, 9 );
61356135 using namespace decls_block ;
61366136 registerDeclTypeAbbr<BuiltinAliasTypeLayout>();
6137+ registerDeclTypeAbbr<BuiltinFixedArrayTypeLayout>();
61376138 registerDeclTypeAbbr<TypeAliasTypeLayout>();
61386139 registerDeclTypeAbbr<GenericTypeParamDeclLayout>();
61396140 registerDeclTypeAbbr<AssociatedTypeDeclLayout>();
Original file line number Diff line number Diff line change 11// RUN: %target-run-simple-swift(-target %module-target-future -enable-experimental-feature ValueGenerics -enable-experimental-feature BuiltinModule -Xfrontend -disable-experimental-parser-round-trip) | %FileCheck %s
2+ // RUN: %target-swift-frontend -target %module-target-future -enable-experimental-feature ValueGenerics -enable-experimental-feature BuiltinModule -disable-experimental-parser-round-trip -emit-module %s -o %t/Vector.swiftmodule
23
34// REQUIRES: executable_test
45// UNSUPPORTED: use_os_stdlib
You can’t perform that action at this time.
0 commit comments