Skip to content

Commit 13c60ae

Browse files
committed
PrunedLiveness: remove a useless flag.
This was recently introduced as a result of rebasing commits. It never did anything useful on the main branch.
1 parent a5fe75e commit 13c60ae

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

include/swift/SIL/PrunedLiveness.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,6 @@ class PrunedLiveBlocks {
190190
/// Optional vector of live blocks for clients that deterministically iterate.
191191
SmallVectorImpl<SILBasicBlock *> *discoveredBlocks = nullptr;
192192

193-
/// Only a clean bitfield can be initialized.
194-
bool cleanFlag = true;
195-
196193
/// Once the first def has been initialized, uses can be added.
197194
bool initializedFlag = false;
198195

@@ -207,7 +204,6 @@ class PrunedLiveBlocks {
207204

208205
void invalidate() {
209206
initializedFlag = false;
210-
cleanFlag = false;
211207
}
212208

213209
void initializeDiscoveredBlocks(

0 commit comments

Comments
 (0)