diff options
author | Connor Abbott <[email protected]> | 2016-04-13 16:25:34 -0400 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-04-20 09:47:05 -0700 |
commit | b6dc940ec273252678d40707d300851fa1c85ea5 (patch) | |
tree | 3709a76d6d2bff986f8d8ee0700c3fc072c68f48 /src/compiler/nir/nir.h | |
parent | 7143068296aaca8c5af3469c013a7c2a850aee84 (diff) |
nir: rename nir_foreach_block*() to nir_foreach_block*_call()
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 3b82cfac1b5..4693ab58a59 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -2121,11 +2121,11 @@ void nir_ssa_def_rewrite_uses_after(nir_ssa_def *def, nir_src new_src, /* visits basic blocks in source-code order */ typedef bool (*nir_foreach_block_cb)(nir_block *block, void *state); -bool nir_foreach_block(nir_function_impl *impl, nir_foreach_block_cb cb, +bool nir_foreach_block_call(nir_function_impl *impl, nir_foreach_block_cb cb, void *state); -bool nir_foreach_block_reverse(nir_function_impl *impl, nir_foreach_block_cb cb, +bool nir_foreach_block_reverse_call(nir_function_impl *impl, nir_foreach_block_cb cb, void *state); -bool nir_foreach_block_in_cf_node(nir_cf_node *node, nir_foreach_block_cb cb, +bool nir_foreach_block_in_cf_node_call(nir_cf_node *node, nir_foreach_block_cb cb, void *state); /* If the following CF node is an if, this function returns that if. |