aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-10-16 01:10:35 +0000
committerEric Christopher <echristo@apple.com>2010-10-16 01:10:35 +0000
commit47650ece374315ce4ff5e483f6165ae37752f230 (patch)
tree576c726f19c34f6f51da58d809a40513e1f891d0 /lib
parent07fda9f9b61c7f072987bbc2731690f6b5d5fd5c (diff)
Fix some funky formatting that got through.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116653 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/ARM/ARMFastISel.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp
index cbfad2dace..450a9bc605 100644
--- a/lib/Target/ARM/ARMFastISel.cpp
+++ b/lib/Target/ARM/ARMFastISel.cpp
@@ -819,7 +819,9 @@ bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg,
VT = MVT::i32;
StrOpc = isThumb ? ARM::t2STRHi8 : ARM::STRH;
break;
- case MVT::i32: StrOpc = isThumb ? ARM::t2STRi8 : ARM::STR; break;
+ case MVT::i32:
+ StrOpc = isThumb ? ARM::t2STRi8 : ARM::STR;
+ break;
case MVT::f32:
if (!Subtarget->hasVFP2()) return false;
StrOpc = ARM::VSTRS;