From: Alejandro PiƱeiro Date: Fri, 13 Dec 2019 13:57:37 +0000 (+0100) Subject: nir/opt_peephole_select: remove unused variables X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2865d79a33c120e512d5619b1f1fdcfdcbe50fa8;p=mesa.git nir/opt_peephole_select: remove unused variables To avoid "unused variable" warnings. Reviewed-by: Ian Romanick --- 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