r600/sfn: use cnde instead of cnde_int

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6814>
This commit is contained in:
Gert Wollny
2020-09-21 20:02:12 +02:00
committed by Marge Bot
parent 952cf95f8b
commit 8a9876a29a

View File

@@ -151,7 +151,7 @@ bool EmitAluInstruction::do_emit(nir_instr* ir)
case nir_op_ffma: return emit_alu_op3(instr, op3_muladd_ieee);
case nir_op_bcsel: return emit_alu_op3(instr, op3_cnde_int, {0, 2, 1});
case nir_op_bcsel: return emit_alu_op3(instr, op3_cnde, {0, 2, 1});
case nir_op_vec2: return emit_create_vec(instr, 2);
case nir_op_vec3: return emit_create_vec(instr, 3);
case nir_op_vec4: return emit_create_vec(instr, 4);