From: Alyssa Rosenzweig Date: Sat, 31 Aug 2019 00:34:13 +0000 (-0700) Subject: panfrost: Mark (1 << 31) as unsigned X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6bd18bb264d02c00505c332d595625daa0a397cb;p=mesa.git panfrost: Mark (1 << 31) as unsigned I was not aware this incurred undefined behaviour; thank you cppcheck. Signed-off-by: Alyssa Rosenzweig Reviewed-by: Tomeu Vizoso --- diff --git a/src/gallium/drivers/panfrost/pan_instancing.c b/src/gallium/drivers/panfrost/pan_instancing.c index e5a1e7cfae3..fc63cdbb25d 100644 --- a/src/gallium/drivers/panfrost/pan_instancing.c +++ b/src/gallium/drivers/panfrost/pan_instancing.c @@ -221,7 +221,7 @@ panfrost_vertex_instanced( unsigned m = m_f; /* Default case */ - unsigned magic_divisor = m, extra_flags = 0; + uint32_t magic_divisor = m, extra_flags = 0; /* e = 2^(shift + 32) % d */ uint64_t e = t % hw_divisor; @@ -234,8 +234,8 @@ panfrost_vertex_instanced( } /* Top flag implicitly set */ - assert(magic_divisor & (1 << 31)); - magic_divisor &= ~(1 << 31); + assert(magic_divisor & (1u << 31)); + magic_divisor &= ~(1u << 31); /* Upload to two different slots */