From 2865d79a33c120e512d5619b1f1fdcfdcbe50fa8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alejandro=20Pi=C3=B1eiro?= Date: Fri, 13 Dec 2019 14:57:37 +0100 Subject: [PATCH] nir/opt_peephole_select: remove unused variables To avoid "unused variable" warnings. Reviewed-by: Ian Romanick --- src/compiler/nir/nir_opt_peephole_select.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/compiler/nir/nir_opt_peephole_select.c b/src/compiler/nir/nir_opt_peephole_select.c index 869f663a89a..25b96cc1ba0 100644 --- a/src/compiler/nir/nir_opt_peephole_select.c +++ b/src/compiler/nir/nir_opt_peephole_select.c @@ -152,10 +152,6 @@ block_check_for_allowed_instrs(nir_block *block, unsigned *count, if (!mov->dest.dest.is_ssa) return false; - const struct nir_block *const expected_block = mov->instr.block; - const nir_alu_type expected_type = - nir_alu_type_get_base_type(nir_op_infos[mov->op].output_type); - if (alu_ok) { /* If the ALU operation is an fsat or a move-like operation, do * not count it. The expectation is that it will eventually be -- 2.30.2