forked from OSchip/llvm-project
ARM: fix typo in VFP instruction definition
The vstm family of VFP instructions belong to the VFP store itinerary class, not the VFP load itinerary class. llvm-svn: 198170
This commit is contained in:
parent
faabd7cf37
commit
da96a81ee6
|
@ -200,7 +200,7 @@ let mayLoad = 1, hasExtraDefRegAllocReq = 1 in
|
||||||
defm VLDM : vfp_ldst_mult<"vldm", 1, IIC_fpLoad_m, IIC_fpLoad_mu>;
|
defm VLDM : vfp_ldst_mult<"vldm", 1, IIC_fpLoad_m, IIC_fpLoad_mu>;
|
||||||
|
|
||||||
let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
|
let mayStore = 1, hasExtraSrcRegAllocReq = 1 in
|
||||||
defm VSTM : vfp_ldst_mult<"vstm", 0, IIC_fpLoad_m, IIC_fpLoad_mu>;
|
defm VSTM : vfp_ldst_mult<"vstm", 0, IIC_fpStore_m, IIC_fpStore_mu>;
|
||||||
|
|
||||||
} // neverHasSideEffects
|
} // neverHasSideEffects
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue