From: Lionel Landwerlin Date: Thu, 13 Jul 2017 15:23:48 +0000 (+0100) Subject: intel/compiler: don't check unsigned is >= 0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=95c917668ca887432b8a7a299555c6c2ca449e04;p=mesa.git intel/compiler: don't check unsigned is >= 0 CID: 1224468 Signed-off-by: Lionel Landwerlin Reviewed-by: Anuj Phogat --- diff --git a/src/intel/compiler/brw_vec4_gs_visitor.cpp b/src/intel/compiler/brw_vec4_gs_visitor.cpp index f763f482365..ca59927cd3a 100644 --- a/src/intel/compiler/brw_vec4_gs_visitor.cpp +++ b/src/intel/compiler/brw_vec4_gs_visitor.cpp @@ -422,7 +422,7 @@ vec4_gs_visitor::set_stream_control_data_bits(unsigned stream_id) assert(c->control_data_bits_per_vertex == 2); /* Must be a valid stream */ - assert(stream_id >= 0 && stream_id < MAX_VERTEX_STREAMS); + assert(stream_id < MAX_VERTEX_STREAMS); /* Control data bits are initialized to 0 so we don't have to set any * bits when sending vertices to stream 0.