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:
@@ -1400,7 +1400,7 @@ nir_compare_func(nir_builder *b, enum compare_func func,
|
||||
case COMPARE_FUNC_EQUAL:
|
||||
return nir_feq(b, src0, src1);
|
||||
case COMPARE_FUNC_NOTEQUAL:
|
||||
return nir_fne(b, src0, src1);
|
||||
return nir_fneu(b, src0, src1);
|
||||
case COMPARE_FUNC_GREATER:
|
||||
return nir_flt(b, src1, src0);
|
||||
case COMPARE_FUNC_GEQUAL:
|
||||
|
Reference in New Issue
Block a user