aco: fix missing break in label_instruction()

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Rhys Perry <pendingchaos02@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5129>
This commit is contained in:
Samuel Pitoiset 2020-05-20 19:55:56 +02:00
parent 22554e1fbc
commit 1ad9a8a884

View file

@ -1073,6 +1073,7 @@ void label_instruction(opt_ctx &ctx, Block& block, aco_ptr<Instruction>& instr)
else
ctx.info[instr->definitions[0].tempId()].set_literal(v);
}
break;
}
case aco_opcode::v_mul_f32: { /* omod */
/* TODO: try to move the negate/abs modifier to the consumer instead */