[llvm-commits] [llvm] r116653 - /llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
Eric Christopher
echristo at apple.com
Fri Oct 15 18:10:35 PDT 2010
Author: echristo
Date: Fri Oct 15 20:10:35 2010
New Revision: 116653
URL: http://llvm.org/viewvc/llvm-project?rev=116653&view=rev
Log:
Fix some funky formatting that got through.
Modified:
llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
Modified: llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMFastISel.cpp?rev=116653&r1=116652&r2=116653&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMFastISel.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMFastISel.cpp Fri Oct 15 20:10:35 2010
@@ -819,7 +819,9 @@
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;
More information about the llvm-commits
mailing list