diff options
Diffstat (limited to 'src/freedreno')
-rw-r--r-- | src/freedreno/ir3/ir3_cp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/freedreno/ir3/ir3_cp.c b/src/freedreno/ir3/ir3_cp.c index 76e13a05bf6..bbc85b12198 100644 --- a/src/freedreno/ir3/ir3_cp.c +++ b/src/freedreno/ir3/ir3_cp.c @@ -210,6 +210,12 @@ static bool valid_flags(struct ir3_instruction *instr, unsigned n, if (is_atomic(instr->opc) && !(instr->flags & IR3_INSTR_G)) return false; + + /* as with atomics, ldib on a6xx can only have immediate for + * SSBO slot argument + */ + if ((instr->opc == OPC_LDIB) && (n != 0)) + return false; } break; |