File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ struct MetadataSections {
9999 MetadataSectionRange swift5_accessible_functions;
100100 MetadataSectionRange swift5_accessible_protocol_requirement_functions;
101101 MetadataSectionRange swift5_runtime_attributes;
102+ MetadataSectionRange swift5_tests;
102103};
103104
104105#ifdef __cplusplus
Original file line number Diff line number Diff line change 5252
5353namespace swift {
5454struct MetadataSections ;
55- static constexpr const uintptr_t CurrentSectionMetadataVersion = 3 ;
55+ static constexpr const uintptr_t CurrentSectionMetadataVersion = 4 ;
5656}
5757
5858struct SectionInfo {
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ DECLARE_SWIFT_SECTION(sw5cptr)
5555DECLARE_SWIFT_SECTION(sw5mpen)
5656DECLARE_SWIFT_SECTION(sw5acfn)
5757DECLARE_SWIFT_SECTION(sw5ratt)
58+ DECLARE_SWIFT_SECTION(sw5test)
5859}
5960
6061namespace {
@@ -88,6 +89,7 @@ static void swift_image_constructor() {
8889 SWIFT_SECTION_RANGE (sw5mpen),
8990 SWIFT_SECTION_RANGE (sw5acfn),
9091 SWIFT_SECTION_RANGE (sw5ratt),
92+ SWIFT_SECTION_RANGE (sw5test),
9193 };
9294
9395#undef SWIFT_SECTION_RANGE
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ DECLARE_SWIFT_SECTION(swift5_mpenum)
6363DECLARE_SWIFT_SECTION(swift5_accessible_functions)
6464DECLARE_SWIFT_SECTION(swift5_accessible_protocol_requirement_functions)
6565DECLARE_SWIFT_SECTION(swift5_runtime_attributes)
66+ DECLARE_SWIFT_SECTION(swift5_tests)
6667}
6768
6869#undef DECLARE_SWIFT_SECTION
@@ -100,6 +101,7 @@ static void swift_image_constructor() {
100101 SWIFT_SECTION_RANGE (swift5_accessible_functions),
101102 SWIFT_SECTION_RANGE (swift5_accessible_protocol_requirement_functions),
102103 SWIFT_SECTION_RANGE (swift5_runtime_attributes),
104+ SWIFT_SECTION_RANGE (swift5_tests),
103105 };
104106
105107#undef SWIFT_SECTION_RANGE
You can’t perform that action at this time.
0 commit comments