Mesa (master): nir: remove now-unused nir_foreach_block*_call()

Jason Ekstrand jekstrand at kemper.freedesktop.org
Thu May 5 23:20:45 UTC 2016


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

Author: Connor Abbott <cwabbott0 at gmail.com>
Date:   Wed Apr 13 17:11:53 2016 -0400

nir: remove now-unused nir_foreach_block*_call()

Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>
Reviewed-by: Connor Abbott <cwabbott0 at gmail.com>
Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 src/compiler/nir/nir.h | 38 --------------------------------------
 1 file changed, 38 deletions(-)

diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h
index 98451c6..8a616d4 100644
--- a/src/compiler/nir/nir.h
+++ b/src/compiler/nir/nir.h
@@ -2180,44 +2180,6 @@ nir_block *nir_cf_node_cf_tree_next(nir_cf_node *node);
         block != nir_cf_node_cf_tree_next(node); \
         block = nir_block_cf_tree_next(block))
 
-typedef bool (*nir_foreach_block_cb)(nir_block *block, void *state);
-
-static inline bool
-nir_foreach_block_call(nir_function_impl *impl, nir_foreach_block_cb cb,
-                       void *state)
-{
-   nir_foreach_block_safe(block, impl) {
-      if (!cb(block, state))
-         return false;
-   }
-
-   return true;
-}
-
-static inline bool
-nir_foreach_block_reverse_call(nir_function_impl *impl, nir_foreach_block_cb cb,
-                               void *state)
-{
-   nir_foreach_block_reverse_safe(block, impl) {
-      if (!cb(block, state))
-         return false;
-   }
-
-   return true;
-}
-
-static inline bool
-nir_foreach_block_in_cf_node_call(nir_cf_node *node, nir_foreach_block_cb cb,
-                                  void *state)
-{
-   nir_foreach_block_in_cf_node(block, node) {
-      if (!cb(block, state))
-         return false;
-   }
-
-   return true;
-}
-
 /* If the following CF node is an if, this function returns that if.
  * Otherwise, it returns NULL.
  */




More information about the mesa-commit mailing list