Skip to content

Commit 18fd92e

Browse files
authored
Merge pull request #64581 from atrick/fix-assert
PrunedLiveness; remove SWIFT_ASSERT_ONLY_DECL
2 parents 36e0c7d + b6f23da commit 18fd92e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/swift/SIL/PrunedLiveness.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ class PrunedLiveBlocks {
191191
SmallVectorImpl<SILBasicBlock *> *discoveredBlocks = nullptr;
192192

193193
/// Only a clean bitfield can be initialized.
194-
SWIFT_ASSERT_ONLY_DECL(bool cleanFlag = true);
194+
bool cleanFlag = true;
195195

196196
/// Once the first def has been initialized, uses can be added.
197-
SWIFT_ASSERT_ONLY_DECL(bool initializedFlag = false);
197+
bool initializedFlag = false;
198198

199199
public:
200200
PrunedLiveBlocks(SILFunction *function,

0 commit comments

Comments
 (0)