mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
aco/ra: Skip blocked regs in get_reg_impl
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37381>
This commit is contained in:
parent
7ed1aea9c5
commit
d4013e7432
1 changed files with 1 additions and 1 deletions
|
|
@ -1487,7 +1487,7 @@ get_reg_impl(ra_ctx& ctx, const RegisterFile& reg_file, std::vector<parallelcopy
|
|||
}
|
||||
continue;
|
||||
}
|
||||
if (is_precolored[j & 0xFF]) {
|
||||
if (is_precolored[j & 0xFF] || reg_file[j] == 0xFFFFFFFF) {
|
||||
found = false;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue