From: Craig Topper Date: Mon, 19 Nov 2012 00:11:50 +0000 (+0000) Subject: Move else onto line with preceding closing brace. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=36f29122efbf3d3c04e7d0d28059fc951e171696;p=platform%2Fupstream%2Fllvm.git Move else onto line with preceding closing brace. llvm-svn: 168294 --- diff --git a/llvm/lib/CodeGen/Passes.cpp b/llvm/lib/CodeGen/Passes.cpp index ee6e2838c..526d994 100644 --- a/llvm/lib/CodeGen/Passes.cpp +++ b/llvm/lib/CodeGen/Passes.cpp @@ -465,8 +465,7 @@ void TargetPassConfig::addMachinePasses() { // Add passes that optimize machine instructions in SSA form. if (getOptLevel() != CodeGenOpt::None) { addMachineSSAOptimization(); - } - else { + } else { // If the target requests it, assign local variables to stack slots relative // to one another and simplify frame index references where possible. addPass(&LocalStackSlotAllocationID);