From: Marek Olšák Date: Wed, 22 May 2019 22:23:27 +0000 (-0400) Subject: ac: fix a typo in ac_build_wg_scan_bottom X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9b64b58dee89ac78d38358f7ebd75cf0d6b86dd;p=mesa.git ac: fix a typo in ac_build_wg_scan_bottom Cc: 19.1 Reviewed-by: Samuel Pitoiset --- diff --git a/src/amd/common/ac_llvm_build.c b/src/amd/common/ac_llvm_build.c index b4d7eb0d0e3..b9866d26d23 100644 --- a/src/amd/common/ac_llvm_build.c +++ b/src/amd/common/ac_llvm_build.c @@ -4327,7 +4327,7 @@ ac_build_wg_scan_bottom(struct ac_llvm_context *ctx, struct ac_wg_scan *ws) /* ws->result_reduce is already the correct value */ if (ws->enable_inclusive) - ws->result_inclusive = ac_build_alu_op(ctx, ws->result_exclusive, ws->src, ws->op); + ws->result_inclusive = ac_build_alu_op(ctx, ws->result_inclusive, ws->src, ws->op); if (ws->enable_exclusive) ws->result_exclusive = ac_build_alu_op(ctx, ws->result_exclusive, ws->extra, ws->op); }