diff options
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index a9c691ea0cd..79db4184868 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -480,7 +480,7 @@ void CodeGenFunction::EmitIfStmt(const IfStmt &S) { RunCleanupsScope ThenScope(*this); EmitStmt(S.getThen()); } - Cnt.adjustFallThroughCount(); + Cnt.adjustForControlFlow(); EmitBranch(ContBlock); // Emit the 'else' code if present. @@ -494,7 +494,7 @@ void CodeGenFunction::EmitIfStmt(const IfStmt &S) { RunCleanupsScope ElseScope(*this); EmitStmt(Else); } - Cnt.adjustFallThroughCount(); + Cnt.adjustForControlFlow(); // There is no need to emit line number for unconditional branch. if (getDebugInfo()) Builder.SetCurrentDebugLocation(llvm::DebugLoc()); @@ -569,7 +569,7 @@ void CodeGenFunction::EmitWhileStmt(const WhileStmt &S) { Cnt.beginRegion(Builder); EmitStmt(S.getBody()); } - Cnt.adjustFallThroughCount(); + Cnt.adjustForControlFlow(); BreakContinueStack.pop_back(); @@ -612,7 +612,7 @@ void CodeGenFunction::EmitDoStmt(const DoStmt &S) { RunCleanupsScope BodyScope(*this); EmitStmt(S.getBody()); } - Cnt.adjustFallThroughCount(); + Cnt.adjustForControlFlow(); BreakContinueStack.pop_back(); @@ -732,7 +732,7 @@ void CodeGenFunction::EmitForStmt(const ForStmt &S) { EmitBlock(Continue.getBlock()); EmitStmt(S.getInc()); } - Cnt.adjustFallThroughCount(); + Cnt.adjustForControlFlow(); BreakContinueStack.pop_back(); @@ -815,7 +815,7 @@ void CodeGenFunction::EmitCXXForRangeStmt(const CXXForRangeStmt &S) { // If there is an increment, emit it next. EmitBlock(Continue.getBlock()); EmitStmt(S.getInc()); - Cnt.adjustFallThroughCount(); + Cnt.adjustForControlFlow(); BreakContinueStack.pop_back(); |