From: Jim Grosbach Date: Wed, 7 Sep 2011 18:39:47 +0000 (+0000) Subject: Thumb2 ldm/stm 'db' mnemonics don't have a '.w' suffix. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cfbb3a78dbb9f0e5de90ef2032f0ee9a7ceda8f1;p=oota-llvm.git Thumb2 ldm/stm 'db' mnemonics don't have a '.w' suffix. There is no 16-bit wide encoding, so the .w suffix isn't needed (indeed, isn't documented as allowed). Also add the missing '!' token on the _UPD variant. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139243 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index dabbeedfeed..3c915576381 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -1524,7 +1524,7 @@ multiclass thumb2_ldst_mult { + itin, !strconcat(asm, "db${p}\t$Rn, $regs"), []> { bits<4> Rn; bits<16> regs; @@ -1539,7 +1539,7 @@ multiclass thumb2_ldst_mult { + itin_upd, !strconcat(asm, "db${p}\t$Rn!, $regs"), "$Rn = $wb", []> { bits<4> Rn; bits<16> regs;