mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 23:09:05 +02:00
v3dv: Remove unsigned comparison to zero.
index is of type uint32_t. Fix defect reported by Coverity Scan. Macro compares unsigned to 0 (NO_EFFECT) unsigned_compare: This greater-than-or-equal-to-zero comparison of an unsigned value is always true. index >= 0U. Signed-off-by: Vinson Lee <vlee@freedesktop.org> Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7153>
This commit is contained in:
parent
5e27e04322
commit
8eb246d7f6
1 changed files with 1 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ v3dv_descriptor_map_get_descriptor(struct v3dv_descriptor_state *descriptor_stat
|
|||
uint32_t index,
|
||||
uint32_t *dynamic_offset)
|
||||
{
|
||||
assert(index >= 0 && index < map->num_desc);
|
||||
assert(index < map->num_desc);
|
||||
|
||||
uint32_t set_number = map->set[index];
|
||||
assert((descriptor_state->valid & 1 << set_number));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue