summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-08-24 18:31:16 +0000
committerChad Rosier <mcrosier@apple.com>2012-08-24 18:31:16 +0000
commit0f8487c6320cf2f760e9f3b136c63e3a50bc98a3 (patch)
tree1c6803fcc40e5399103ca8ec7e2158c115212ae4 /clang/lib/CodeGen/CGStmt.cpp
parent6efc2ba7f8a825838f2fe83a444623faf35d5be5 (diff)
downloadbcm5719-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.cpp3
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.
OpenPOWER on IntegriCloud