Skip to content

Commit 0fdf747

Browse files
author
Your Name
committed
Format
1 parent 2429009 commit 0fdf747

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

lib/forwardanalyzer.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,7 @@ namespace {
423423
// The branch was entered because of the tracked value; if it might not
424424
// return (it ends in a call to an unknown, possibly noreturn function)
425425
// then the value might not flow past the branch.
426-
if (!condTok->hasKnownIntValue() && !branch.escape && branch.escapeUnknown &&
427-
!analyzer->lowerToInconclusive())
426+
if (!condTok->hasKnownIntValue() && !branch.escape && branch.escapeUnknown && !analyzer->lowerToInconclusive())
428427
return Break(Analyzer::Terminate::Bail);
429428
return Progress::Continue;
430429
}

0 commit comments

Comments
 (0)