Move else onto line with preceding closing brace.
authorCraig Topper <craig.topper@gmail.com>
Mon, 19 Nov 2012 00:11:50 +0000 (00:11 +0000)
committerCraig Topper <craig.topper@gmail.com>
Mon, 19 Nov 2012 00:11:50 +0000 (00:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168294 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/Passes.cpp

index ee6e2838c2b0c5e191b5dd7a38549e99dd8113c7..526d994abbc71b7f255e7c2431fdee9ab3090707 100644 (file)
@@ -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);