mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
pan/mdg: Track ALU dest type
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4793>
This commit is contained in:
parent
6757c480ab
commit
ecf946638e
1 changed files with 3 additions and 2 deletions
|
|
@ -647,7 +647,6 @@ emit_alu(compiler_context *ctx, nir_alu_instr *instr)
|
|||
|
||||
bool is_ssa = instr->dest.dest.is_ssa;
|
||||
|
||||
unsigned dest = nir_dest_index(&instr->dest.dest);
|
||||
unsigned nr_components = nir_dest_num_components(instr->dest.dest);
|
||||
unsigned nr_inputs = nir_op_infos[instr->op].num_inputs;
|
||||
|
||||
|
|
@ -919,7 +918,9 @@ emit_alu(compiler_context *ctx, nir_alu_instr *instr)
|
|||
|
||||
midgard_instruction ins = {
|
||||
.type = TAG_ALU_4,
|
||||
.dest = dest,
|
||||
.dest = nir_dest_index(&instr->dest.dest),
|
||||
.dest_type = nir_op_infos[instr->op].output_type
|
||||
| nir_dest_bit_size(instr->dest.dest),
|
||||
};
|
||||
|
||||
for (unsigned i = nr_inputs; i < ARRAY_SIZE(ins.src); ++i)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue