diff options
author | Dave Airlie <[email protected]> | 2019-04-11 20:27:01 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2019-04-12 08:53:10 +1000 |
commit | e4ed08873bfc3d0f778f768f0bdfd159c709da8e (patch) | |
tree | b2251d5ca292f822326e8266372f5e974dfc882f /src/gallium/auxiliary | |
parent | 4fcb749044c44a2d8d1908bfa0de2a0493502242 (diff) |
draw: fix undefined shift of (1 << 31)
Pointed out by a coverity scan.
Reviewed-by: Eric Engestrom <[email protected]>
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pipe_aapoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pipe_aapoint.c b/src/gallium/auxiliary/draw/draw_pipe_aapoint.c index 2b96b8ad446..dc22039b127 100644 --- a/src/gallium/auxiliary/draw/draw_pipe_aapoint.c +++ b/src/gallium/auxiliary/draw/draw_pipe_aapoint.c @@ -175,7 +175,7 @@ aa_transform_prolog(struct tgsi_transform_context *ctx) /* find two free temp regs */ for (i = 0; i < 32; i++) { - if ((aactx->tempsUsed & (1 << i)) == 0) { + if ((aactx->tempsUsed & (1u << i)) == 0) { /* found a free temp */ if (aactx->tmp0 < 0) aactx->tmp0 = i; |