[llvm-commits] [llvm] r99013 - /llvm/trunk/lib/Target/ARM/ARMInstrInfo.td

Johnny Chen johnny.chen at apple.com
Fri Mar 19 16:50:28 PDT 2010


Author: johnny
Date: Fri Mar 19 18:50:27 2010
New Revision: 99013

URL: http://llvm.org/viewvc/llvm-project?rev=99013&view=rev
Log:
Revert r98679.  The disassembler will be updated to depend on the existence of
IndexModeUpd and then populates the Inst{21}=1 while populating the instructions
for disassembly.

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

Modified: llvm/trunk/lib/Target/ARM/ARMInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMInstrInfo.td?rev=99013&r1=99012&r2=99013&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMInstrInfo.td (original)
+++ llvm/trunk/lib/Target/ARM/ARMInstrInfo.td Fri Mar 19 18:50:27 2010
@@ -1358,9 +1358,7 @@
                                       reglist:$dsts, variable_ops),
                      IndexModeUpd, LdStMulFrm, IIC_iLoadm,
                      "ldm${addr:submode}${p}\t$addr!, $dsts",
-                     "$addr.addr = $wb", []> {
-  let Inst{21} = 1; // wback
-}
+                     "$addr.addr = $wb", []>;
 } // mayLoad, hasExtraDefRegAllocReq
 
 let mayStore = 1, hasExtraSrcRegAllocReq = 1 in {
@@ -1373,9 +1371,7 @@
                                       reglist:$srcs, variable_ops),
                      IndexModeUpd, LdStMulFrm, IIC_iStorem,
                      "stm${addr:submode}${p}\t$addr!, $srcs",
-                     "$addr.addr = $wb", []> {
-  let Inst{21} = 1; // wback
-}
+                     "$addr.addr = $wb", []>;
 } // mayStore, hasExtraSrcRegAllocReq
 
 //===----------------------------------------------------------------------===//





More information about the llvm-commits mailing list