From c16f63b3430eb2dfda0d5f8518d62554394ce22e Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Tue, 16 Mar 2021 11:14:15 +1000 Subject: [PATCH] gallivm: convert packing to uint64 not double Fixes some issues with later inttopotr casting. Reviewed-By: Mike Blumenkrantz Part-of: --- src/gallium/auxiliary/gallivm/lp_bld_nir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_nir.c b/src/gallium/auxiliary/gallivm/lp_bld_nir.c index c02970f..f637f11 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_nir.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_nir.c @@ -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: -- 2.7.4