mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
broadcom/compiler: use correct flag enum
They have the same value, so no functional change Reviewed-by: Iago Torral Quiroga <itoral@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11764>
This commit is contained in:
parent
91dcbf1f56
commit
458801e2c3
1 changed files with 2 additions and 2 deletions
|
|
@ -868,9 +868,9 @@ qpu_convert_add_to_mul(struct v3d_qpu_instr *inst)
|
|||
inst->flags.mc = inst->flags.ac;
|
||||
inst->flags.mpf = inst->flags.apf;
|
||||
inst->flags.muf = inst->flags.auf;
|
||||
inst->flags.ac = V3D_QPU_PF_NONE;
|
||||
inst->flags.ac = V3D_QPU_COND_NONE;
|
||||
inst->flags.apf = V3D_QPU_PF_NONE;
|
||||
inst->flags.auf = V3D_QPU_PF_NONE;
|
||||
inst->flags.auf = V3D_QPU_UF_NONE;
|
||||
}
|
||||
|
||||
static bool
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue