mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
R600/SI: Fix error from vdst on no return atomics
Set the ignored field to 0 so we can enable noNamedPositionallyEncodedOperands. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229606 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2422768a8a
commit
642c65e2df
@ -1566,8 +1566,10 @@ multiclass DS_1A2D_NORET_m <bits<8> op, string opName, dag outs, dag ins,
|
|||||||
def "" : DS_Pseudo <opName, outs, ins, pat>,
|
def "" : DS_Pseudo <opName, outs, ins, pat>,
|
||||||
AtomicNoRet<noRetOp, 0>;
|
AtomicNoRet<noRetOp, 0>;
|
||||||
|
|
||||||
def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
|
let vdst = 0 in {
|
||||||
def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
|
def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
|
||||||
|
def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1586,7 +1588,7 @@ multiclass DS_1A1D_NORET_m <bits<8> op, string opName, dag outs, dag ins,
|
|||||||
def "" : DS_Pseudo <opName, outs, ins, pat>,
|
def "" : DS_Pseudo <opName, outs, ins, pat>,
|
||||||
AtomicNoRet<noRetOp, 0>;
|
AtomicNoRet<noRetOp, 0>;
|
||||||
|
|
||||||
let data1 = 0 in {
|
let data1 = 0, vdst = 0 in {
|
||||||
def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
|
def _si : DS_1A_Real_si <op, opName, outs, ins, asm>;
|
||||||
def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
|
def _vi : DS_1A_Real_vi <op, opName, outs, ins, asm>;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user