From 59f2cfcbc7d9da9b9e7c45ccc58c5cdaecbe92e8 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 30 Aug 2019 11:01:57 -0700 Subject: [PATCH] pan/midgard: Remove texture_index This is deadcode. Signed-off-by: Alyssa Rosenzweig --- src/panfrost/midgard/compiler.h | 3 --- src/panfrost/midgard/midgard_compile.c | 3 --- 2 files changed, 6 deletions(-) diff --git a/src/panfrost/midgard/compiler.h b/src/panfrost/midgard/compiler.h index b63a542..00c6b52 100644 --- a/src/panfrost/midgard/compiler.h +++ b/src/panfrost/midgard/compiler.h @@ -268,9 +268,6 @@ typedef struct compiler_context { * Decrease when a tex op is removed. */ int texture_op_count; - /* Mapping of texture register -> SSA index for unaliasing */ - int texture_index[2]; - /* The number of uniforms allowable for the fast path */ int uniform_cutoff; diff --git a/src/panfrost/midgard/midgard_compile.c b/src/panfrost/midgard/midgard_compile.c index 8a0ac08..158f89a 100644 --- a/src/panfrost/midgard/midgard_compile.c +++ b/src/panfrost/midgard/midgard_compile.c @@ -2294,9 +2294,6 @@ emit_block(compiler_context *ctx, nir_block *block) this_block->is_scheduled = false; ++ctx->block_count; - ctx->texture_index[0] = ~0; - ctx->texture_index[1] = ~0; - /* Set up current block */ list_inithead(&this_block->instructions); ctx->current_block = this_block; -- 2.7.4