diff options
author | David Goodwin <david_goodwin@apple.com> | 2009-07-28 18:15:38 +0000 |
---|---|---|
committer | David Goodwin <david_goodwin@apple.com> | 2009-07-28 18:15:38 +0000 |
commit | 5743854f47c00118f7e667c68c10db5ce76225b3 (patch) | |
tree | eec34e8fc00178e72ee01a8e9208ebed77e832bd /lib | |
parent | 3e23d42deecb7617d4bb035e64019a537b0e7803 (diff) | |
download | external_llvm-5743854f47c00118f7e667c68c10db5ce76225b3.tar.gz external_llvm-5743854f47c00118f7e667c68c10db5ce76225b3.tar.bz2 external_llvm-5743854f47c00118f7e667c68c10db5ce76225b3.zip |
Add workaround for <rdar://problem/7098328>.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77340 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMInstrThumb2.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrThumb2.td b/lib/Target/ARM/ARMInstrThumb2.td index 2affa6389c..6930402736 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -714,8 +714,9 @@ defm t2LSR : T2I_sh_ir<"lsr", BinOpFrag<(srl node:$LHS, node:$RHS)>>; defm t2ASR : T2I_sh_ir<"asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>; defm t2ROR : T2I_sh_ir<"ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>; +// FIXME should be "rrx $dst,$src" once <rdar://problem/7098328> is fixed def t2MOVrx : T2sI<(outs GPR:$dst), (ins GPR:$src), - "rrx", " $dst, $src", + "mov", ".w $dst, $src, rrx", [(set GPR:$dst, (ARMrrx GPR:$src))]>; let Defs = [CPSR] in { |