From 8bcf561616a7e2368f7424e6570854012ba83f8d Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Sat, 28 May 2016 01:06:51 +0000 Subject: [PATCH] AArch64: Fix indentation git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@271084 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AArch64/AArch64InstrInfo.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/Target/AArch64/AArch64InstrInfo.cpp b/lib/Target/AArch64/AArch64InstrInfo.cpp index 48707fa0b31..2a804a18672 100644 --- a/lib/Target/AArch64/AArch64InstrInfo.cpp +++ b/lib/Target/AArch64/AArch64InstrInfo.cpp @@ -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; } -- 2.11.0