summaryrefslogtreecommitdiff
path: root/lib/Sema/SemaExecStmt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Sema/SemaExecStmt.cpp')
-rw-r--r--lib/Sema/SemaExecStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaExecStmt.cpp b/lib/Sema/SemaExecStmt.cpp
index 168aa68d23..30c67316b1 100644
--- a/lib/Sema/SemaExecStmt.cpp
+++ b/lib/Sema/SemaExecStmt.cpp
@@ -419,7 +419,7 @@ Stmt *Sema::LeaveBlocksUntilDo(SourceLocation Loc) {
--I;
auto S = Stack[I].Statement;
if(isa<DoWhileStmt>(S) ||
- isa<DoStmt>(S) && !Stack[I].hasExpectedDoLabel()) {
+ (isa<DoStmt>(S) && !Stack[I].hasExpectedDoLabel())) {
Result = S;
break;
}