We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_storage
1 parent 113c4fb commit a925142Copy full SHA for a925142
lib/SILOptimizer/Mandatory/DefiniteInitialization.cpp
@@ -3840,6 +3840,11 @@ static MarkUninitializedInst *findLocalTypeWrapperStorageVar(SILFunction &F) {
3840
if (!BB)
3841
return nullptr;
3842
3843
+ // The variable in question - `_storage` is injected during Sema
3844
+ // as a first declaration statement in the body of a user-defined
3845
+ // designated initializer of a type wrapped type.
3846
+ //
3847
+ // See \c TypeCheckFunctionBodyRequest for more details.
3848
for (auto &I : *BB) {
3849
SILInstruction *Inst = &I;
3850
auto *MUI = dyn_cast<MarkUninitializedInst>(Inst);
0 commit comments