Drp...

Reviewed-by: Jason Ekstrand <[email protected]>

On Thu, May 2, 2019 at 10:25 PM Dave Airlie <[email protected]> wrote:

> From: Dave Airlie <[email protected]>
>
> The spir-v spec says this returns a bool.
> ---
>  src/compiler/spirv/vtn_alu.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/src/compiler/spirv/vtn_alu.c b/src/compiler/spirv/vtn_alu.c
> index d8ffc18d495..6d4347887cd 100644
> --- a/src/compiler/spirv/vtn_alu.c
> +++ b/src/compiler/spirv/vtn_alu.c
> @@ -646,9 +646,7 @@ vtn_handle_alu(struct vtn_builder *b, SpvOp opcode,
>           val->ssa->def =
>              nir_ishr(&b->nb, src[0], nir_imm_int(&b->nb, src_bit_size -
> 1));
>
> -      if (src_bit_size != 32)
> -         val->ssa->def = nir_u2u32(&b->nb, val->ssa->def);
> -
> +      val->ssa->def = nir_i2b(&b->nb, val->ssa->def);
>        break;
>     }
>
> --
> 2.21.0
>
> _______________________________________________
> mesa-dev mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to