diff options
author | Lionel Landwerlin <[email protected]> | 2017-07-13 16:32:54 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-07-13 22:50:45 +0100 |
commit | 226fae7849ca45ed02f4aca064875b69dfe44a54 (patch) | |
tree | e53d61c58fece46f550b1cfc952156ce088b3249 /src/intel | |
parent | 7c4daf8c3759fae9e1ef1e088866680b8574755c (diff) |
intel/compiler: no need to check unsigned is >= 0
CID: 1338342
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/compiler/brw_fs_nir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_fs_nir.cpp b/src/intel/compiler/brw_fs_nir.cpp index a9dce42c38d..aea2c625630 100644 --- a/src/intel/compiler/brw_fs_nir.cpp +++ b/src/intel/compiler/brw_fs_nir.cpp @@ -1776,7 +1776,7 @@ fs_visitor::set_gs_stream_control_data_bits(const fs_reg &vertex_count, assert(gs_compile->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. |