mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[SIL] Add new flag to SILFunction - IsDistributed
Determines whether given SILFunction represents a distributed method or its thunk.
This commit is contained in:
committed by
Pavel Yaskevich
parent
88fb8c2272
commit
4860f90fd7
@@ -490,7 +490,8 @@ void SILSerializer::writeSILFunction(const SILFunction &F, bool DeclOnly) {
|
||||
(unsigned)numSpecAttrs, (unsigned)F.hasOwnership(),
|
||||
F.isAlwaysWeakImported(), LIST_VER_TUPLE_PIECES(available),
|
||||
(unsigned)F.isDynamicallyReplaceable(), (unsigned)F.isExactSelfClass(),
|
||||
FnID, replacedFunctionID, genericSigID, clangNodeOwnerID, SemanticsIDs);
|
||||
(unsigned)F.isDistributed(), FnID, replacedFunctionID, genericSigID,
|
||||
clangNodeOwnerID, SemanticsIDs);
|
||||
|
||||
if (NoBody)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user