Module: Mesa Branch: master Commit: 2865d79a33c120e512d5619b1f1fdcfdcbe50fa8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2865d79a33c120e512d5619b1f1fdcfdcbe50fa8
Author: Alejandro PiƱeiro <[email protected]> Date: Fri Dec 13 14:57:37 2019 +0100 nir/opt_peephole_select: remove unused variables To avoid "unused variable" warnings. Reviewed-by: Ian Romanick <[email protected]> --- 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 _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
