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

Author: Ian Romanick <ian.d.roman...@intel.com>
Date:   Tue Oct 30 09:46:26 2018 -0700

nir/phi_builder: Internal users should use nir_phi_builder_value_set_block_def 
too

Signed-off-by: Ian Romanick <ian.d.roman...@intel.com>
Reviewed-by: Jason Ekstrand <ja...@jlekstrand.net>

---

 src/compiler/nir/nir_phi_builder.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/compiler/nir/nir_phi_builder.c 
b/src/compiler/nir/nir_phi_builder.c
index cc5ce81d12..add3efd2df 100644
--- a/src/compiler/nir/nir_phi_builder.c
+++ b/src/compiler/nir/nir_phi_builder.c
@@ -147,7 +147,7 @@ nir_phi_builder_add_value(struct nir_phi_builder *pb, 
unsigned num_components,
              * value to the magic value NEEDS_PHI.  Later, we create phi nodes
              * on demand in nir_phi_builder_value_get_block_def().
              */
-            val->defs[next->index] = NEEDS_PHI;
+            nir_phi_builder_value_set_block_def(val, next, NEEDS_PHI);
 
             if (pb->work[next->index] < pb->iter_count) {
                pb->work[next->index] = pb->iter_count;
@@ -232,7 +232,7 @@ nir_phi_builder_value_get_block_def(struct 
nir_phi_builder_value *val,
     *  2) To avoid unneeded recreation of phi nodes and undefs.
     */
    for (dom = block; dom && val->defs[dom->index] == NULL; dom = dom->imm_dom)
-      val->defs[dom->index] = def;
+      nir_phi_builder_value_set_block_def(val, dom, def);
 
    return def;
 }

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to