From: Timothy Arceri Date: Wed, 21 Jun 2017 10:12:12 +0000 (+1000) Subject: glsl: tidy up int declaration X-Git-Tag: upstream/18.1.0~8484 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e9f7840bd4f724421ab1d591923ea860b8f1a2a;p=platform%2Fupstream%2Fmesa.git glsl: tidy up int declaration Reviewed-by: Lionel Landwerlin Reviewed-by: Nicolai Hähnle Reviewed-by: Samuel Pitoiset --- diff --git a/src/compiler/glsl/opt_algebraic.cpp b/src/compiler/glsl/opt_algebraic.cpp index a5a1029..b44ab59 100644 --- a/src/compiler/glsl/opt_algebraic.cpp +++ b/src/compiler/glsl/opt_algebraic.cpp @@ -313,7 +313,6 @@ ir_algebraic_visitor::handle_expression(ir_expression *ir) { ir_constant *op_const[4] = {NULL, NULL, NULL, NULL}; ir_expression *op_expr[4] = {NULL, NULL, NULL, NULL}; - unsigned int i; if (ir->operation == ir_binop_mul && ir->operands[0]->type->is_matrix() && @@ -330,7 +329,7 @@ ir_algebraic_visitor::handle_expression(ir_expression *ir) } assert(ir->get_num_operands() <= 4); - for (i = 0; i < ir->get_num_operands(); i++) { + for (unsigned i = 0; i < ir->get_num_operands(); i++) { if (ir->operands[i]->type->is_matrix()) return ir;