diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-03-19 23:50:27 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-03-19 23:50:27 +0000 |
commit | e86425f22443881ae1051419b4f47114271db79f (patch) | |
tree | 0fadd7e3d1e688389593e8ccbb313ca3d97c9f6e | |
parent | d7de54068ca6db50f4b54fb150af7b7c62573449 (diff) |
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.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99013 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index de5a9fe5b0..a70d6dfe81 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -1358,9 +1358,7 @@ def LDM_UPD : AXI4ld<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p, 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 @@ def STM_UPD : AXI4st<(outs GPR:$wb), (ins addrmode4:$addr, pred:$p, 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 //===----------------------------------------------------------------------===// |