diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-03-16 22:18:29 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-03-16 22:18:29 +0000 |
commit | 11d5dc3d50217711462b453ca9592e39d0c879e7 (patch) | |
tree | 1997e9e2208fb4ff4387e769cbd6ee38ce7837e3 | |
parent | 66cba302f0e9de6f4e9401b24375d791aad32b6b (diff) |
ARM fix silly typo in optional operand alias.
rdar://11065671
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152954 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb2.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index b0cc397f5c..5427c7fc98 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -574,7 +574,7 @@ multiclass T2I_bin_w_irs<bits<4> opcod, string opc, cc_out:$s)>; // and with the optional destination operand, too. - def : t2InstAlias<!strconcat(opc, "${s}${p}.ri", " $Rdn, $imm"), + def : t2InstAlias<!strconcat(opc, "${s}${p}.w", " $Rdn, $imm"), (!cast<Instruction>(!strconcat(baseOpc, "ri")) rGPR:$Rdn, rGPR:$Rdn, t2_so_imm:$imm, pred:$p, cc_out:$s)>; |