mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 08:40:11 +01:00
aco: Drop NIR parallel copy handling
Backends never see these instructions. Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Suggested-by: Daniel Schürmann <daniel@schuermann.dev> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23831>
This commit is contained in:
parent
3b21c59fc3
commit
bbdbab15fc
1 changed files with 0 additions and 6 deletions
|
|
@ -596,12 +596,6 @@ init_context(isel_context* ctx, nir_shader* shader)
|
|||
regclasses[tex->dest.ssa.index] = rc;
|
||||
break;
|
||||
}
|
||||
case nir_instr_type_parallel_copy: {
|
||||
nir_foreach_parallel_copy_entry (entry, nir_instr_as_parallel_copy(instr)) {
|
||||
regclasses[entry->dest.ssa.index] = regclasses[entry->src.ssa->index];
|
||||
}
|
||||
break;
|
||||
}
|
||||
case nir_instr_type_ssa_undef: {
|
||||
unsigned num_components = nir_instr_as_ssa_undef(instr)->def.num_components;
|
||||
unsigned bit_size = nir_instr_as_ssa_undef(instr)->def.bit_size;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue