Fix the formatting of the switch statement and add a missing break.

llvm-svn: 106586
This commit is contained in:
Bill Wendling 2010-06-22 22:16:17 +00:00
parent 4ffbad1904
commit 8ce69cd95a
1 changed files with 4 additions and 3 deletions

View File

@ -3007,16 +3007,16 @@ bool X86InstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
EVT VT = Load1->getValueType(0);
switch (VT.getSimpleVT().SimpleTy) {
default: {
default:
// XMM registers. In 64-bit mode we can be a bit more aggressive since we
// have 16 of them to play with.
if (TM.getSubtargetImpl()->is64Bit()) {
if (NumLoads >= 3)
return false;
} else if (NumLoads)
} else if (NumLoads) {
return false;
}
break;
}
case MVT::i8:
case MVT::i16:
case MVT::i32:
@ -3025,6 +3025,7 @@ bool X86InstrInfo::shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
case MVT::f64:
if (NumLoads)
return false;
break;
}
return true;