File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -3194,14 +3194,16 @@ class DeclDeserializer {
3194
3194
fn->setForcedStaticDispatch (hasForcedStaticDispatch);
3195
3195
ctx.evaluator .cacheOutput (NeedsNewVTableEntryRequest{fn},
3196
3196
std::move (needsNewVTableEntry));
3197
- fn->setUserAccessible (isUserAccessible);
3198
3197
3199
3198
if (opaqueReturnTypeID) {
3200
3199
ctx.evaluator .cacheOutput (
3201
3200
OpaqueResultTypeRequest{fn},
3202
3201
cast<OpaqueTypeDecl>(MF.getDecl (opaqueReturnTypeID)));
3203
3202
}
3204
3203
3204
+ if (!isAccessor)
3205
+ fn->setUserAccessible (isUserAccessible);
3206
+
3205
3207
return fn;
3206
3208
}
3207
3209
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const uint16_t SWIFTMODULE_VERSION_MAJOR = 0;
55
55
// / describe what change you made. The content of this comment isn't important;
56
56
// / it just ensures a conflict if two people change the module format.
57
57
// / Don't worry about adhering to the 80-column limit for this line.
58
- const uint16_t SWIFTMODULE_VERSION_MINOR = 573 ; // @async on SILFunctionType
58
+ const uint16_t SWIFTMODULE_VERSION_MINOR = 574 ; // reapply isUserAccessible
59
59
60
60
// / A standard hash seed used for all string hashes in a serialized module.
61
61
// /
You can’t perform that action at this time.
0 commit comments