nir: rename nir_op_fne to nir_op_fneu
[mesa.git] / src / amd / compiler / aco_instruction_selection.cpp
index 5bd389a5be415be281b28b922f7c4c89a73de7c7..42b899e4c700c6e830e67c466e17a28c8a90d11d 100644 (file)
@@ -2918,7 +2918,7 @@ void visit_alu_instr(isel_context *ctx, nir_alu_instr *instr)
       emit_comparison(ctx, instr, dst, aco_opcode::v_cmp_eq_f16, aco_opcode::v_cmp_eq_f32, aco_opcode::v_cmp_eq_f64);
       break;
    }
-   case nir_op_fne: {
+   case nir_op_fneu: {
       emit_comparison(ctx, instr, dst, aco_opcode::v_cmp_neq_f16, aco_opcode::v_cmp_neq_f32, aco_opcode::v_cmp_neq_f64);
       break;
    }