diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2010-02-05 18:04:58 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2010-02-05 18:04:58 +0000 |
| commit | a778db9a91f31245edc3a8cfd90e3e313230fc34 (patch) | |
| tree | 97ec96d25f75dd78fca43d587a39fd585dbff674 /llvm/lib/Target | |
| parent | 73587761e2a94aebd89ecb0e595fffeb82f92d31 (diff) | |
| download | bcm5719-llvm-a778db9a91f31245edc3a8cfd90e3e313230fc34.tar.gz bcm5719-llvm-a778db9a91f31245edc3a8cfd90e3e313230fc34.zip | |
VMOVRRD and VMOVDRR both have Inst{7-6} = 0b00.
llvm-svn: 95397
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMInstrVFP.td | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrVFP.td b/llvm/lib/Target/ARM/ARMInstrVFP.td index 96577412bf3..2ba58665516 100644 --- a/llvm/lib/Target/ARM/ARMInstrVFP.td +++ b/llvm/lib/Target/ARM/ARMInstrVFP.td @@ -248,7 +248,9 @@ def VMOVSR : AVConv4I<0b11100000, 0b1010, (outs SPR:$dst), (ins GPR:$src), def VMOVRRD : AVConv3I<0b11000101, 0b1011, (outs GPR:$wb, GPR:$dst2), (ins DPR:$src), IIC_VMOVDI, "vmov", "\t$wb, $dst2, $src", - [/* FIXME: Can't write pattern for multiple result instr*/]>; + [/* FIXME: Can't write pattern for multiple result instr*/]> { + let Inst{7-6} = 0b00; +} // FMDHR: GPR -> SPR // FMDLR: GPR -> SPR @@ -256,7 +258,9 @@ def VMOVRRD : AVConv3I<0b11000101, 0b1011, def VMOVDRR : AVConv5I<0b11000100, 0b1011, (outs DPR:$dst), (ins GPR:$src1, GPR:$src2), IIC_VMOVID, "vmov", "\t$dst, $src1, $src2", - [(set DPR:$dst, (arm_fmdrr GPR:$src1, GPR:$src2))]>; + [(set DPR:$dst, (arm_fmdrr GPR:$src1, GPR:$src2))]> { + let Inst{7-6} = 0b00; +} // FMRDH: SPR -> GPR // FMRDL: SPR -> GPR |

