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

Author: Connor Abbott <[email protected]>
Date:   Tue Jul 30 11:04:14 2019 +0200

nir: Fix comparison for nir_deref_instr_is_known_out_of_bounds()

There was an off-by-one error.

Fixes: 156306e5e62 ("nir/find_array_copies: Handle wildcards and overlapping 
copies")
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>

---

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

diff --git a/src/compiler/nir/nir_deref.c b/src/compiler/nir/nir_deref.c
index 804ec99fa71..5aa1c383db7 100644
--- a/src/compiler/nir/nir_deref.c
+++ b/src/compiler/nir/nir_deref.c
@@ -127,7 +127,7 @@ nir_deref_instr_is_known_out_of_bounds(nir_deref_instr 
*instr)
    for (; instr; instr = nir_deref_instr_parent(instr)) {
       if (instr->deref_type == nir_deref_type_array &&
           nir_src_is_const(instr->arr.index) &&
-           nir_src_as_uint(instr->arr.index) >
+           nir_src_as_uint(instr->arr.index) >=
            glsl_get_length(nir_deref_instr_parent(instr)->type))
          return true;
    }

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

Reply via email to