diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-08-24 18:31:16 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-08-24 18:31:16 +0000 |
commit | 0f8487c6320cf2f760e9f3b136c63e3a50bc98a3 (patch) | |
tree | 1c6803fcc40e5399103ca8ec7e2158c115212ae4 /clang/lib/CodeGen/CGStmt.cpp | |
parent | 6efc2ba7f8a825838f2fe83a444623faf35d5be5 (diff) | |
download | bcm5719-llvm-0f8487c6320cf2f760e9f3b136c63e3a50bc98a3.tar.gz bcm5719-llvm-0f8487c6320cf2f760e9f3b136c63e3a50bc98a3.zip |
Fix 80-column violation.
llvm-svn: 162575
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGStmt.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp index ed27442cd8f..5004b4925e3 100644 --- a/clang/lib/CodeGen/CGStmt.cpp +++ b/clang/lib/CodeGen/CGStmt.cpp @@ -899,7 +899,8 @@ void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) { // If the body of the case is just a 'break', and if there was no fallthrough, // try to not emit an empty block. - if ((CGM.getCodeGenOpts().OptimizationLevel > 0) && isa<BreakStmt>(S.getSubStmt())) { + if ((CGM.getCodeGenOpts().OptimizationLevel > 0) && + isa<BreakStmt>(S.getSubStmt())) { JumpDest Block = BreakContinueStack.back().BreakBlock; // Only do this optimization if there are no cleanups that need emitting. |