mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 12:30:11 +01:00
agx: allow phis with 16bit imms
could do 32-bit too.. Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26963>
This commit is contained in:
parent
d8391860d9
commit
b7585851d0
1 changed files with 2 additions and 1 deletions
|
|
@ -10,5 +10,6 @@ agx_allows_16bit_immediate(agx_instr *I)
|
|||
{
|
||||
return (I->op == AGX_OPCODE_DEVICE_LOAD) ||
|
||||
(I->op == AGX_OPCODE_DEVICE_STORE) ||
|
||||
(I->op == AGX_OPCODE_UNIFORM_STORE) || (I->op == AGX_OPCODE_ATOMIC);
|
||||
(I->op == AGX_OPCODE_UNIFORM_STORE) || (I->op == AGX_OPCODE_ATOMIC) ||
|
||||
(I->op == AGX_OPCODE_PHI);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue