nir: rename nir_op_fne to nir_op_fneu
It was always fneu but naming it fne causes confusion from time to time. So lets rename it. Later we also want to add other unordered and fne, this is a smaller preparation for that. Signed-off-by: Karol Herbst <kherbst@redhat.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Connor Abbott <cwabbott0@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6377>
This commit is contained in:
@@ -958,7 +958,7 @@ ntq_emit_comparison(struct vc4_compile *c, struct qreg *dest,
|
||||
case nir_op_seq:
|
||||
cond = QPU_COND_ZS;
|
||||
break;
|
||||
case nir_op_fne32:
|
||||
case nir_op_fneu32:
|
||||
case nir_op_ine32:
|
||||
case nir_op_sne:
|
||||
cond = QPU_COND_ZC;
|
||||
@@ -1213,7 +1213,7 @@ ntq_emit_alu(struct vc4_compile *c, nir_alu_instr *instr)
|
||||
case nir_op_sge:
|
||||
case nir_op_slt:
|
||||
case nir_op_feq32:
|
||||
case nir_op_fne32:
|
||||
case nir_op_fneu32:
|
||||
case nir_op_fge32:
|
||||
case nir_op_flt32:
|
||||
case nir_op_ieq32:
|
||||
|
Reference in New Issue
Block a user