[llvm] r198170 - ARM: fix typo in VFP instruction definition

Saleem Abdulrasool compnerd at compnerd.org
Sun Dec 29 09:58:27 PST 2013


Author: compnerd
Date: Sun Dec 29 11:58:27 2013
New Revision: 198170

URL: http://llvm.org/viewvc/llvm-project?rev=198170&view=rev
Log:
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.

Modified:
    llvm/trunk/lib/Target/ARM/ARMInstrVFP.td

Modified: llvm/trunk/lib/Target/ARM/ARMInstrVFP.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrVFP.td?rev=198170&r1=198169&r2=198170&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrVFP.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrVFP.td Sun Dec 29 11:58:27 2013
@@ -200,7 +200,7 @@ let mayLoad = 1, hasExtraDefRegAllocReq
 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
 





More information about the llvm-commits mailing list