Fix some funky formatting that got through.
authorEric Christopher <echristo@apple.com>
Sat, 16 Oct 2010 01:10:35 +0000 (01:10 +0000)
committerEric Christopher <echristo@apple.com>
Sat, 16 Oct 2010 01:10:35 +0000 (01:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116653 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARM/ARMFastISel.cpp

index cbfad2dace29163e8133f88e04f3a939d9084da4..450a9bc605c53a5ffea1b26ef9c4b936d576b2fb 100644 (file)
@@ -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;