AArch64: Fix indentation

llvm-svn: 271084
This commit is contained in:
Matthias Braun 2016-05-28 01:06:51 +00:00
parent 84d1922f0d
commit bcfd23673b
1 changed files with 9 additions and 9 deletions

View File

@ -1524,17 +1524,17 @@ bool AArch64InstrInfo::isCandidateToMergeOrPair(MachineInstr *MI) const {
// Do not pair quad ld/st for Exynos.
if (Subtarget.isExynosM1()) {
switch (MI->getOpcode()) {
default:
break;
switch (MI->getOpcode()) {
default:
break;
case AArch64::LDURQi:
case AArch64::STURQi:
case AArch64::LDRQui:
case AArch64::STRQui:
return false;
}
case AArch64::LDURQi:
case AArch64::STURQi:
case AArch64::LDRQui:
case AArch64::STRQui:
return false;
}
}
return true;
}