diff options
| author | Jim Grosbach <grosbach@apple.com> | 2010-10-14 20:43:44 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2010-10-14 20:43:44 +0000 |
| commit | 7c165e244d6747a51f74568588240dc8eaef5542 (patch) | |
| tree | 4cdd099c1ffb74e8d8c56440f09205d2fb4f0a8e /lib/Target/ARM/ARMInstrThumb2.td | |
| parent | d9cecbb97195ff6c9357c32c54fe17bad5f5d59a (diff) | |
| download | external_llvm-7c165e244d6747a51f74568588240dc8eaef5542.zip external_llvm-7c165e244d6747a51f74568588240dc8eaef5542.tar.gz external_llvm-7c165e244d6747a51f74568588240dc8eaef5542.tar.bz2 | |
Tweak the ARM backend to use the RRX mnemonic instead of the 'mov a, b, rrx'
pseudonym.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116512 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrThumb2.td')
| -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 25b9428..5c5ef18 100644 --- a/lib/Target/ARM/ARMInstrThumb2.td +++ b/lib/Target/ARM/ARMInstrThumb2.td @@ -1598,7 +1598,7 @@ defm t2ASR : T2I_sh_ir<0b10, "asr", BinOpFrag<(sra node:$LHS, node:$RHS)>>; defm t2ROR : T2I_sh_ir<0b11, "ror", BinOpFrag<(rotr node:$LHS, node:$RHS)>>; let Uses = [CPSR] in { -def t2MOVrx : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi, +def t2RRX : T2sI<(outs rGPR:$dst), (ins rGPR:$src), IIC_iMOVsi, "rrx", "\t$dst, $src", [(set rGPR:$dst, (ARMrrx rGPR:$src))]> { let Inst{31-27} = 0b11101; |
