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 | 865c6298d794fa7350a03c66fd4b30f85d52f7db (patch) | |
tree | 9ab77385db9221c8bc09cba9ca9529c863119656 /llvm/lib | |
parent | b77659f4ae4cce1885766960c07885d97b539689 (diff) | |
download | bcm5719-llvm-865c6298d794fa7350a03c66fd4b30f85d52f7db.tar.gz bcm5719-llvm-865c6298d794fa7350a03c66fd4b30f85d52f7db.zip |
Add workaround for <rdar://problem/7098328>.
llvm-svn: 77340
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrThumb2.td | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrThumb2.td b/llvm/lib/Target/ARM/ARMInstrThumb2.td index 2affa6389c6..69304027367 100644 --- a/llvm/lib/Target/ARM/ARMInstrThumb2.td +++ b/llvm/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 { |