File tree 4 files changed +6
-1
lines changed
4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ struct MetadataSections {
99
99
MetadataSectionRange swift5_accessible_functions;
100
100
MetadataSectionRange swift5_accessible_protocol_requirement_functions;
101
101
MetadataSectionRange swift5_runtime_attributes;
102
+ MetadataSectionRange swift5_tests;
102
103
};
103
104
104
105
#ifdef __cplusplus
Original file line number Diff line number Diff line change 52
52
53
53
namespace swift {
54
54
struct MetadataSections ;
55
- static constexpr const uintptr_t CurrentSectionMetadataVersion = 3 ;
55
+ static constexpr const uintptr_t CurrentSectionMetadataVersion = 4 ;
56
56
}
57
57
58
58
struct SectionInfo {
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ DECLARE_SWIFT_SECTION(sw5cptr)
55
55
DECLARE_SWIFT_SECTION(sw5mpen)
56
56
DECLARE_SWIFT_SECTION(sw5acfn)
57
57
DECLARE_SWIFT_SECTION(sw5ratt)
58
+ DECLARE_SWIFT_SECTION(sw5test)
58
59
}
59
60
60
61
namespace {
@@ -88,6 +89,7 @@ static void swift_image_constructor() {
88
89
SWIFT_SECTION_RANGE (sw5mpen),
89
90
SWIFT_SECTION_RANGE (sw5acfn),
90
91
SWIFT_SECTION_RANGE (sw5ratt),
92
+ SWIFT_SECTION_RANGE (sw5test),
91
93
};
92
94
93
95
#undef SWIFT_SECTION_RANGE
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ DECLARE_SWIFT_SECTION(swift5_mpenum)
63
63
DECLARE_SWIFT_SECTION(swift5_accessible_functions)
64
64
DECLARE_SWIFT_SECTION(swift5_accessible_protocol_requirement_functions)
65
65
DECLARE_SWIFT_SECTION(swift5_runtime_attributes)
66
+ DECLARE_SWIFT_SECTION(swift5_tests)
66
67
}
67
68
68
69
#undef DECLARE_SWIFT_SECTION
@@ -100,6 +101,7 @@ static void swift_image_constructor() {
100
101
SWIFT_SECTION_RANGE (swift5_accessible_functions),
101
102
SWIFT_SECTION_RANGE (swift5_accessible_protocol_requirement_functions),
102
103
SWIFT_SECTION_RANGE (swift5_runtime_attributes),
104
+ SWIFT_SECTION_RANGE (swift5_tests),
103
105
};
104
106
105
107
#undef SWIFT_SECTION_RANGE
You can’t perform that action at this time.
0 commit comments