]> granicus.if.org Git - clang/commitdiff
Fix 80-column violation.
authorChad Rosier <mcrosier@apple.com>
Fri, 24 Aug 2012 18:31:16 +0000 (18:31 +0000)
committerChad Rosier <mcrosier@apple.com>
Fri, 24 Aug 2012 18:31:16 +0000 (18:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162575 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGStmt.cpp

index ed27442cd8f9118a9b49a8921788e9bbb7e173fe..5004b4925e3fef478d90b3e9502f50a65daaf00c 100644 (file)
@@ -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.