forked from OSchip/llvm-project
Fix some funky formatting that got through.
llvm-svn: 116653
This commit is contained in:
parent
1cee0adea3
commit
c918d550b6
|
@ -819,7 +819,9 @@ bool ARMFastISel::ARMEmitStore(EVT VT, unsigned SrcReg,
|
||||||
VT = MVT::i32;
|
VT = MVT::i32;
|
||||||
StrOpc = isThumb ? ARM::t2STRHi8 : ARM::STRH;
|
StrOpc = isThumb ? ARM::t2STRHi8 : ARM::STRH;
|
||||||
break;
|
break;
|
||||||
case MVT::i32: StrOpc = isThumb ? ARM::t2STRi8 : ARM::STR; break;
|
case MVT::i32:
|
||||||
|
StrOpc = isThumb ? ARM::t2STRi8 : ARM::STR;
|
||||||
|
break;
|
||||||
case MVT::f32:
|
case MVT::f32:
|
||||||
if (!Subtarget->hasVFP2()) return false;
|
if (!Subtarget->hasVFP2()) return false;
|
||||||
StrOpc = ARM::VSTRS;
|
StrOpc = ARM::VSTRS;
|
||||||
|
|
Loading…
Reference in New Issue