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

Author: Marek Olšák <[email protected]>
Date:   Thu Sep 17 23:51:58 2020 -0400

nir: fix input/output info gathering for lowered IO

Ooops.

Fixes: 17af07024df - nir: gather all IO info from IO intrinsics

Reviewed-by: Eric Anholt <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6758>

---

 src/compiler/nir/nir_gather_info.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compiler/nir/nir_gather_info.c 
b/src/compiler/nir/nir_gather_info.c
index ae209f41ec9..95472782852 100644
--- a/src/compiler/nir/nir_gather_info.c
+++ b/src/compiler/nir/nir_gather_info.c
@@ -308,7 +308,7 @@ static void
 gather_intrinsic_info(nir_intrinsic_instr *instr, nir_shader *shader,
                       void *dead_ctx)
 {
-   unsigned slot_mask = 0;
+   uint64_t slot_mask = 0;
 
    if 
(nir_intrinsic_infos[instr->intrinsic].index_map[NIR_INTRINSIC_IO_SEMANTICS] > 
0) {
       nir_io_semantics semantics = nir_intrinsic_io_semantics(instr);

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to