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 36e0c7d commit fd03de4Copy full SHA for fd03de4
include/swift/SIL/PrunedLiveness.h
@@ -191,10 +191,10 @@ class PrunedLiveBlocks {
191
SmallVectorImpl<SILBasicBlock *> *discoveredBlocks = nullptr;
192
193
/// Only a clean bitfield can be initialized.
194
- SWIFT_ASSERT_ONLY_DECL(bool cleanFlag = true);
+ bool cleanFlag = true;
195
196
/// Once the first def has been initialized, uses can be added.
197
- SWIFT_ASSERT_ONLY_DECL(bool initializedFlag = false);
+ bool initializedFlag = false;
198
199
public:
200
PrunedLiveBlocks(SILFunction *function,
0 commit comments