diff options
author | Marek Olšák <[email protected]> | 2019-05-22 18:23:27 -0400 |
---|---|---|
committer | Juan A. Suarez Romero <[email protected]> | 2019-06-05 08:29:08 +0000 |
commit | 96fbd54398b7cff91bd61d6dd874fd3b2fd54c1c (patch) | |
tree | ea2bbc2d630017ef4a8fcfcdbb4fc0c2ccc34cc4 | |
parent | 60688cc393080c1dc02cf8b2cf3ef785f40902b9 (diff) |
ac: fix a typo in ac_build_wg_scan_bottom
Cc: 19.1 <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
(cherry picked from commit c9b64b58dee89ac78d38358f7ebd75cf0d6b86dd)
-rw-r--r-- | src/amd/common/ac_llvm_build.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/ac_llvm_build.c b/src/amd/common/ac_llvm_build.c index 22b771db774..429333d5763 100644 --- a/src/amd/common/ac_llvm_build.c +++ b/src/amd/common/ac_llvm_build.c @@ -4016,7 +4016,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); } |