From b2417801e5d82cfac640086307599e81d5ae93e8 Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Sat, 26 Oct 2019 10:47:21 -0700 Subject: [PATCH] freedreno/ir3: remove impossible condition We keep kill's alive w/ keeps these days, rather than a fake output. This condition was left over from prior to that change. Signed-off-by: Rob Clark Reviewed-by: Kristian H. Kristensen Reviewed-by: Eric Anholt --- src/freedreno/ir3/ir3_shader.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/freedreno/ir3/ir3_shader.c b/src/freedreno/ir3/ir3_shader.c index 4260aee98b3..05c8567ab99 100644 --- a/src/freedreno/ir3/ir3_shader.c +++ b/src/freedreno/ir3/ir3_shader.c @@ -407,9 +407,6 @@ ir3_shader_disasm(struct ir3_shader_variant *so, uint32_t *bin, FILE *out) fprintf(out, "; out%d unused\n", i); continue; } - /* kill shows up as a virtual output.. skip it! */ - if (is_kill(ir->outputs[i])) - continue; reg = ir->outputs[i]->regs[0]; regid = reg->num; fprintf(out, "@out(%sr%d.%c)\tout%d\n", -- 2.30.2