mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
R600/SI: Fix encoding error from glc bit on VI SMRD instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229608 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9e39c99180
commit
76f78b9ac2
@ -576,7 +576,11 @@ multiclass SMRD_m <bits<5> op, string opName, bit imm, dag outs, dag ins,
|
||||
|
||||
def _si : SMRD_Real_si <op, opName, imm, outs, ins, asm>;
|
||||
|
||||
def _vi : SMRD_Real_vi <{0, 0, 0, op}, opName, imm, outs, ins, asm>;
|
||||
// glc is only applicable to scalar stores, which are not yet
|
||||
// implemented.
|
||||
let glc = 0 in {
|
||||
def _vi : SMRD_Real_vi <{0, 0, 0, op}, opName, imm, outs, ins, asm>;
|
||||
}
|
||||
}
|
||||
|
||||
multiclass SMRD_Helper <bits<5> op, string opName, RegisterClass baseClass,
|
||||
|
Loading…
Reference in New Issue
Block a user