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;
58
58
// / describe what change you made. The content of this comment isn't important;
59
59
// / it just ensures a conflict if two people change the module format.
60
60
// / 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
62
62
63
63
// / A standard hash seed used for all string hashes in a serialized module.
64
64
// /
Original file line number Diff line number Diff line change @@ -6134,6 +6134,7 @@ void Serializer::writeAllDeclsAndTypes() {
6134
6134
BCBlockRAII restoreBlock (Out, DECLS_AND_TYPES_BLOCK_ID, 9 );
6135
6135
using namespace decls_block ;
6136
6136
registerDeclTypeAbbr<BuiltinAliasTypeLayout>();
6137
+ registerDeclTypeAbbr<BuiltinFixedArrayTypeLayout>();
6137
6138
registerDeclTypeAbbr<TypeAliasTypeLayout>();
6138
6139
registerDeclTypeAbbr<GenericTypeParamDeclLayout>();
6139
6140
registerDeclTypeAbbr<AssociatedTypeDeclLayout>();
Original file line number Diff line number Diff line change 1
1
// 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
2
3
3
4
// REQUIRES: executable_test
4
5
// UNSUPPORTED: use_os_stdlib
You can’t perform that action at this time.
0 commit comments