diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-12-29 17:58:27 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2013-12-29 17:58:27 +0000 |
commit | da96a81ee68a881cdaf4f757b8d5d31d4c149a0c (patch) | |
tree | 9622cf7bf1e3c3be6ffcda776645063ccbc68c1d /llvm/lib/Target/ARM | |
parent | faabd7cf374c3fa36379e68bf1fe260036b15614 (diff) | |
download | bcm5719-llvm-da96a81ee68a881cdaf4f757b8d5d31d4c149a0c.tar.gz bcm5719-llvm-da96a81ee68a881cdaf4f757b8d5d31d4c149a0c.zip |
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
Diffstat (limited to 'llvm/lib/Target/ARM')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrVFP.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrVFP.td b/llvm/lib/Target/ARM/ARMInstrVFP.td index a8cdc5ca063..399a5fa4c5f 100644 --- a/llvm/lib/Target/ARM/ARMInstrVFP.td +++ b/llvm/lib/Target/ARM/ARMInstrVFP.td @@ -200,7 +200,7 @@ let mayLoad = 1, hasExtraDefRegAllocReq = 1 in defm VLDM : vfp_ldst_mult<"vldm", 1, IIC_fpLoad_m, IIC_fpLoad_mu>; 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 |