<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, May 19, 2016 at 8:48 PM, Dave Airlie <span dir="ltr"><<a href="mailto:airlied@gmail.com" target="_blank">airlied@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">From: Dave Airlie <<a href="mailto:airlied@redhat.com">airlied@redhat.com</a>><br>
<br>
This code handles 0 length fine,</blockquote><div><br></div><div>Um... No it doesn't.  A length of 0 means unsized which means we really need to to a get_array_length call and loop.  Am I messing something?<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> and with the new glsl layer<br>
code to handle unsized array better, we can hit this path with<br>
./bin/arb_separate_shader_object-GetProgramPipelineiv<br>
<br>
removing the assert works fine.<br>
<br>
Signed-off-by: Dave Airlie <<a href="mailto:airlied@redhat.com">airlied@redhat.com</a>><br>
---<br>
 src/compiler/nir/nir_lower_var_copies.c | 1 -<br>
 1 file changed, 1 deletion(-)<br>
<br>
diff --git a/src/compiler/nir/nir_lower_var_copies.c b/src/compiler/nir/nir_lower_var_copies.c<br>
index b7e9989..f774f53 100644<br>
--- a/src/compiler/nir/nir_lower_var_copies.c<br>
+++ b/src/compiler/nir/nir_lower_var_copies.c<br>
@@ -93,7 +93,6 @@ emit_copy_load_store(nir_intrinsic_instr *copy_instr,<br>
       unsigned length = glsl_get_length(src_arr_parent->type);<br>
       /* The wildcards should represent the same number of elements */<br>
       assert(length == glsl_get_length(dest_arr_parent->type));<br>
-      assert(length > 0);<br>
<br>
       /* Walk over all of the elements that this wildcard refers to and<br>
        * call emit_copy_load_store on each one of them */<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.5.5<br>
<br>
_______________________________________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/mesa-dev</a><br>
</font></span></blockquote></div><br></div></div>