Module: Mesa Branch: master Commit: 95c917668ca887432b8a7a299555c6c2ca449e04 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=95c917668ca887432b8a7a299555c6c2ca449e04
Author: Lionel Landwerlin <[email protected]> Date: Thu Jul 13 16:23:48 2017 +0100 intel/compiler: don't check unsigned is >= 0 CID: 1224468 Signed-off-by: Lionel Landwerlin <[email protected]> Reviewed-by: Anuj Phogat <[email protected]> --- src/intel/compiler/brw_vec4_gs_visitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/compiler/brw_vec4_gs_visitor.cpp b/src/intel/compiler/brw_vec4_gs_visitor.cpp index f763f48236..ca59927cd3 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. _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
