mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
cell: fix assertions in spe_lqd(), spe_stqd()
This commit is contained in:
parent
53ae243869
commit
78c67a726f
1 changed files with 2 additions and 2 deletions
|
|
@ -559,7 +559,7 @@ void spe_lqd(struct spe_function *p, unsigned rT, unsigned rA, int offset)
|
|||
const boolean pSave = p->print;
|
||||
|
||||
p->print = FALSE;
|
||||
assert(offset % 4 == 0);
|
||||
assert(offset % 16 == 0);
|
||||
emit_RI10(p, 0x034, rT, rA, offset >> 4, "spe_lqd");
|
||||
p->print = pSave;
|
||||
|
||||
|
|
@ -579,7 +579,7 @@ void spe_stqd(struct spe_function *p, unsigned rT, unsigned rA, int offset)
|
|||
const boolean pSave = p->print;
|
||||
|
||||
p->print = FALSE;
|
||||
assert(offset % 4 == 0);
|
||||
assert(offset % 16 == 0);
|
||||
emit_RI10(p, 0x024, rT, rA, offset >> 4, "spe_stqd");
|
||||
p->print = pSave;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue