Fix 80-column violation.

llvm-svn: 162575
This commit is contained in:
Chad Rosier 2012-08-24 18:31:16 +00:00
parent 6efc2ba7f8
commit 0f8487c632
1 changed files with 2 additions and 1 deletions

View 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, // If the body of the case is just a 'break', and if there was no fallthrough,
// try to not emit an empty block. // 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; JumpDest Block = BreakContinueStack.back().BreakBlock;
// Only do this optimization if there are no cleanups that need emitting. // Only do this optimization if there are no cleanups that need emitting.