intel/compiler: don't check unsigned is >= 0
CID: 1224468 Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
This commit is contained in:
@@ -422,7 +422,7 @@ vec4_gs_visitor::set_stream_control_data_bits(unsigned stream_id)
|
|||||||
assert(c->control_data_bits_per_vertex == 2);
|
assert(c->control_data_bits_per_vertex == 2);
|
||||||
|
|
||||||
/* Must be a valid stream */
|
/* 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
|
/* Control data bits are initialized to 0 so we don't have to set any
|
||||||
* bits when sending vertices to stream 0.
|
* bits when sending vertices to stream 0.
|
||||||
|
Reference in New Issue
Block a user