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 3693a29 commit 625d747Copy full SHA for 625d747
1 file changed
lib/forwardanalyzer.cpp
@@ -562,14 +562,12 @@ namespace {
562
forkContinue = false;
563
}
564
565
- if (!forkContinue) {
566
- // TODO: Don't bail on missing condition
567
- if (!condTok)
568
- return Break(Analyzer::Terminate::Bail);
569
- if (analyzer->isConditional() && stopUpdates())
570
- return Break(Analyzer::Terminate::Conditional);
571
- analyzer->assume(condTok, false);
572
- }
+ // TODO: Don't bail on missing condition
+ if (!condTok)
+ return Break(Analyzer::Terminate::Bail);
+ if (analyzer->isConditional() && stopUpdates())
+ return Break(Analyzer::Terminate::Conditional);
+ analyzer->assume(condTok, false);
573
if (forkContinue) {
574
for (ForwardTraversal& ft : ftv) {
575
if (!ft.actions.isIncremental())
0 commit comments