Mesa (master): r600/sfn: Correctly lower all int64

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Sun Nov 22 23:16:37 UTC 2020


Module: Mesa
Branch: master
Commit: bb6bdeb2305cda83fe58617b628b78ff968b2d00
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bb6bdeb2305cda83fe58617b628b78ff968b2d00

Author: Gert Wollny <gert.wollny at collabora.com>
Date:   Fri Oct 16 17:29:09 2020 +0200

r600/sfn: Correctly lower all int64

Signed-off-by: Gert Wollny <gert.wollny at collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7724>

---

 src/gallium/drivers/r600/r600_pipe_common.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/gallium/drivers/r600/r600_pipe_common.c b/src/gallium/drivers/r600/r600_pipe_common.c
index 5c8e5d52476..04d62bcc03d 100644
--- a/src/gallium/drivers/r600/r600_pipe_common.c
+++ b/src/gallium/drivers/r600/r600_pipe_common.c
@@ -1191,7 +1191,7 @@ const struct nir_shader_compiler_options r600_nir_fs_options = {
         .lower_fsign = true,
 	.lower_fmod = true,
 	.lower_doubles_options = nir_lower_fp64_full_software,
-	.lower_int64_options = 0,
+	.lower_int64_options = ~0,
 	.lower_extract_byte = true,
 	.lower_extract_word = true,
         .lower_rotate = true,
@@ -1213,7 +1213,7 @@ const struct nir_shader_compiler_options r600_nir_options = {
 	.lower_fdiv = true,
 	.lower_fmod = true,
 	.lower_doubles_options = nir_lower_fp64_full_software,
-	.lower_int64_options = 0,
+	.lower_int64_options = ~0,
 	.lower_extract_byte = true,
 	.lower_extract_word = true,
         .lower_rotate = true,



More information about the mesa-commit mailing list