mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 16:33:28 +00:00
Fix DForm_4: format is `op r, r, i'
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15613 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7b71776401
commit
a91f53634c
@ -139,7 +139,6 @@ class DForm_2<string name, bits<6> opcode, bit ppc64, bit vmx>
|
||||
class DForm_2_r0<string name, bits<6> opcode, bit ppc64, bit vmx>
|
||||
: DForm_base<name, opcode, ppc64, vmx> {
|
||||
let Arg1Type = Gpr0.Value;
|
||||
let B = 0;
|
||||
}
|
||||
|
||||
// Currently we make the use/def reg distinction in ISel, not tablegen
|
||||
@ -147,7 +146,9 @@ class DForm_3<string name, bits<6> opcode, bit ppc64, bit vmx>
|
||||
: DForm_1<name, opcode, ppc64, vmx>;
|
||||
|
||||
class DForm_4<string name, bits<6> opcode, bit ppc64, bit vmx>
|
||||
: DForm_1<name, opcode, ppc64, vmx>;
|
||||
: DForm_base<name, opcode, ppc64, vmx> {
|
||||
let Arg2Type = Zimm16.Value;
|
||||
}
|
||||
|
||||
class DForm_4_zero<string name, bits<6> opcode, bit ppc64, bit vmx>
|
||||
: DForm_1<name, opcode, ppc64, vmx> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user