diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp
index cbfad2dace2..450a9bc605c 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;