gallivm: convert packing to uint64 not double
authorDave Airlie <airlied@redhat.com>
Tue, 16 Mar 2021 01:14:15 +0000 (11:14 +1000)
committerMarge Bot <eric+marge@anholt.net>
Tue, 16 Mar 2021 23:05:10 +0000 (23:05 +0000)
Fixes some issues with later inttopotr casting.

Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9616>

src/gallium/auxiliary/gallivm/lp_bld_nir.c

index c02970f..f637f11 100644 (file)
@@ -877,7 +877,7 @@ static LLVMValueRef do_alu_action(struct lp_build_nir_context *bld_base,
       break;
    case nir_op_pack_64_2x32_split: {
       LLVMValueRef tmp = merge_64bit(bld_base, src[0], src[1]);
-      result = LLVMBuildBitCast(builder, tmp, bld_base->dbl_bld.vec_type, "");
+      result = LLVMBuildBitCast(builder, tmp, bld_base->uint64_bld.vec_type, "");
       break;
    }
    case nir_op_u2f32: