[llvm] r182356 - Fix indentation
Richard Sandiford
rsandifo at linux.vnet.ibm.com
Tue May 21 01:48:24 PDT 2013
Author: rsandifo
Date: Tue May 21 03:48:24 2013
New Revision: 182356
URL: http://llvm.org/viewvc/llvm-project?rev=182356&view=rev
Log:
Fix indentation
Modified:
llvm/trunk/lib/Target/SystemZ/SystemZLongBranch.cpp
Modified: llvm/trunk/lib/Target/SystemZ/SystemZLongBranch.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/SystemZ/SystemZLongBranch.cpp?rev=182356&r1=182355&r2=182356&view=diff
==============================================================================
--- llvm/trunk/lib/Target/SystemZ/SystemZLongBranch.cpp (original)
+++ llvm/trunk/lib/Target/SystemZ/SystemZLongBranch.cpp Tue May 21 03:48:24 2013
@@ -320,15 +320,15 @@ void SystemZLongBranch::setWorstCaseAddr
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;
More information about the llvm-commits
mailing list