File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ silopt_register_sources(
13
13
DiagnoseUnreachable.cpp
14
14
GuaranteedARCOpts.cpp
15
15
IRGenPrepare.cpp
16
+ MarkUninitializedFixup.cpp
16
17
MandatoryInlining.cpp
17
18
PredictableMemOpt.cpp
18
19
PMOMemoryUseCollector.cpp
Original file line number Diff line number Diff line change @@ -107,9 +107,8 @@ struct MarkUninitializedFixup : SILFunctionTransform {
107
107
Projections.push_back (PBI);
108
108
}
109
109
}
110
- assert (!Projections.empty ()
111
- && " SILGen should never emit a "
112
- " mark_uninitialized by itself" );
110
+ assert (!Projections.empty () && " SILGen should never emit a "
111
+ " mark_uninitialized by itself" );
113
112
114
113
// First replace all uses of the mark_uninitialized with the box.
115
114
MUI->replaceAllUsesWith (Box);
@@ -137,7 +136,6 @@ struct MarkUninitializedFixup : SILFunctionTransform {
137
136
SILAnalysis::InvalidationKind::BranchesAndInstructions);
138
137
}
139
138
};
140
-
141
139
} // end anonymous namespace
142
140
143
141
SILTransform *swift::createMarkUninitializedFixup () {
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ silopt_register_sources(
18
18
Devirtualizer.cpp
19
19
GenericSpecializer.cpp
20
20
MergeCondFail.cpp
21
- MarkUninitializedFixup.cpp
22
21
Outliner.cpp
23
22
ObjectOutliner.cpp
24
23
OwnershipModelEliminator.cpp
You can’t perform that action at this time.
0 commit comments