1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Move else onto line with preceding closing brace.

llvm-svn: 168294
This commit is contained in:
Craig Topper 2012-11-19 00:11:50 +00:00
parent 666f7dee7a
commit c5148fc302

View 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);