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

Author: Timothy Arceri <[email protected]>
Date:   Fri Aug  5 11:08:20 2016 +1000

nir: make use of nir_cf_list_extract() helper

Reviewed-by: Kenneth Graunke <[email protected]>

---

 src/compiler/nir/nir_opt_dead_cf.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/compiler/nir/nir_opt_dead_cf.c 
b/src/compiler/nir/nir_opt_dead_cf.c
index 81c1b65..3551124 100644
--- a/src/compiler/nir/nir_opt_dead_cf.c
+++ b/src/compiler/nir/nir_opt_dead_cf.c
@@ -128,8 +128,7 @@ opt_constant_if(nir_if *if_stmt, bool condition)
                                          : &if_stmt->else_list;
 
    nir_cf_list list;
-   nir_cf_extract(&list, nir_before_cf_list(cf_list),
-                  nir_after_cf_list(cf_list));
+   nir_cf_list_extract(&list, cf_list);
    nir_cf_reinsert(&list, nir_after_cf_node(&if_stmt->cf_node));
    nir_cf_node_remove(&if_stmt->cf_node);
 }

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

Reply via email to