mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 02:38:04 +02:00
gallium: minor optimization to spe_load_int()
This commit is contained in:
parent
be5d8bd078
commit
b71f4150c8
1 changed files with 2 additions and 1 deletions
|
|
@ -505,7 +505,8 @@ spe_load_int(struct spe_function *p, unsigned rT, int i)
|
|||
}
|
||||
else {
|
||||
spe_ilhu(p, rT, i >> 16);
|
||||
spe_iohl(p, rT, i & 0xffff);
|
||||
if (i & 0xffff)
|
||||
spe_iohl(p, rT, i & 0xffff);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue