From e58baeeaefe85bfc89085f236104e91b124cd792 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 10 Dec 2020 12:08:13 -0800 Subject: [PATCH] gallium/ntt: Drop XXX comment about supporting carry opcodes. The GLSL-to-NIR path didn't do carry, so we don't need to. Reviewed-by: Gert Wollny Part-of: --- src/gallium/auxiliary/nir/nir_to_tgsi.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gallium/auxiliary/nir/nir_to_tgsi.c b/src/gallium/auxiliary/nir/nir_to_tgsi.c index da74b2d666b..ea1a8a548d5 100644 --- a/src/gallium/auxiliary/nir/nir_to_tgsi.c +++ b/src/gallium/auxiliary/nir/nir_to_tgsi.c @@ -815,8 +815,6 @@ ntt_emit_alu(struct ntt_compile *c, nir_alu_instr *instr) ureg_UADD(c->ureg, dst, src[0], ureg_negate(src[1])); break; - /* XXX: carry */ - case nir_op_fmod: unreachable("should be handled by .lower_fmod = true"); break;