Module: Mesa Branch: master Commit: 66463b7f7540ed3d21ca6ae7c729fbb671453188 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=66463b7f7540ed3d21ca6ae7c729fbb671453188
Author: Dave Airlie <[email protected]> Date: Fri Feb 3 01:03:13 2017 +0000 radv: fix compute shared memory stores since 64-bit. These regressed and caused doom to stop loading. Fixes: 03724af26 radv/ac: Implement Float64 load/store var. Reviewed-by: Edward O'Callaghan <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Signed-off-by: Dave Airlie <[email protected]> --- src/amd/common/ac_nir_to_llvm.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 728294c..ddec74f 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2351,9 +2351,11 @@ visit_store_var(struct nir_to_llvm_context *ctx, if (indir_index) index = LLVMBuildAdd(ctx->builder, index, indir_index, ""); + + value = llvm_extract_elem(ctx, src, chan); derived_ptr = LLVMBuildGEP(ctx->builder, ptr, &index, 1, ""); LLVMBuildStore(ctx->builder, - to_integer(ctx, src), derived_ptr); + to_integer(ctx, value), derived_ptr); } break; } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
