From: Matt Turner Date: Fri, 21 Nov 2014 22:53:20 +0000 (-0800) Subject: glsl: Fix tautological comparison. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b754e525325d6a04d2c43372cd359486ff69b812;p=mesa.git glsl: Fix tautological comparison. Caught by clang. warning: comparison of constant -1 with expression of type 'ir_texture_opcode' is always false [-Wtautological-constant-out-of-range-compare] if (op == -1) ~~ ^ ~~ Reviewed-by: Kenneth Graunke --- diff --git a/src/glsl/ir_reader.cpp b/src/glsl/ir_reader.cpp index ae00e793496..fd318c046e2 100644 --- a/src/glsl/ir_reader.cpp +++ b/src/glsl/ir_reader.cpp @@ -972,7 +972,7 @@ ir_reader::read_texture(s_expression *expr) op = ir_query_levels; } else if (MATCH(expr, other_pattern)) { op = ir_texture::get_opcode(tag->value()); - if (op == -1) + if (op == (ir_texture_opcode) -1) return NULL; } else { ir_read_error(NULL, "unexpected texture pattern %s", tag->value());