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.
1 parent a5fe75e commit 13c60aeCopy full SHA for 13c60ae
include/swift/SIL/PrunedLiveness.h
@@ -190,9 +190,6 @@ class PrunedLiveBlocks {
190
/// Optional vector of live blocks for clients that deterministically iterate.
191
SmallVectorImpl<SILBasicBlock *> *discoveredBlocks = nullptr;
192
193
- /// Only a clean bitfield can be initialized.
194
- bool cleanFlag = true;
195
-
196
/// Once the first def has been initialized, uses can be added.
197
bool initializedFlag = false;
198
@@ -207,7 +204,6 @@ class PrunedLiveBlocks {
207
204
208
205
void invalidate() {
209
206
initializedFlag = false;
210
- cleanFlag = false;
211
}
212
213
void initializeDiscoveredBlocks(
0 commit comments