summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZLongBranch.cpp
diff options
context:
space:
mode:
authorRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-05-21 08:48:24 +0000
committerRichard Sandiford <rsandifo@linux.vnet.ibm.com>2013-05-21 08:48:24 +0000
commit275428fe4abd4bd690456d29c7c54143d653cb4f (patch)
treee48d4e9142d2dfc0782467f265a97e6ef5bf90c5 /lib/Target/SystemZ/SystemZLongBranch.cpp
parent4b5c3f6094bb59ba00e55c323e41e7a9b6bd26a2 (diff)
downloadllvm-275428fe4abd4bd690456d29c7c54143d653cb4f.tar.gz
llvm-275428fe4abd4bd690456d29c7c54143d653cb4f.tar.bz2
llvm-275428fe4abd4bd690456d29c7c54143d653cb4f.tar.xz
Fix indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182356 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZLongBranch.cpp')
-rw-r--r--lib/Target/SystemZ/SystemZLongBranch.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/Target/SystemZ/SystemZLongBranch.cpp b/lib/Target/SystemZ/SystemZLongBranch.cpp
index d9d1c7ea69..e50ebca2a7 100644
--- a/lib/Target/SystemZ/SystemZLongBranch.cpp
+++ b/lib/Target/SystemZ/SystemZLongBranch.cpp
@@ -320,15 +320,15 @@ void SystemZLongBranch::setWorstCaseAddresses() {
void SystemZLongBranch::relaxBranch(TerminatorInfo &Terminator) {
MachineInstr *Branch = Terminator.Branch;
switch (Branch->getOpcode()) {
- case SystemZ::J:
- Branch->setDesc(TII->get(SystemZ::JG));
- break;
- case SystemZ::BRC:
- Branch->setDesc(TII->get(SystemZ::BRCL));
- break;
- default:
- llvm_unreachable("Unrecognized branch");
- }
+ case SystemZ::J:
+ Branch->setDesc(TII->get(SystemZ::JG));
+ break;
+ case SystemZ::BRC:
+ Branch->setDesc(TII->get(SystemZ::BRCL));
+ break;
+ default:
+ llvm_unreachable("Unrecognized branch");
+ }
Terminator.Size += Terminator.ExtraRelaxSize;
Terminator.ExtraRelaxSize = 0;