summaryrefslogtreecommitdiffstats
path: root/src/glsl/nir/nir.c
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2014-12-17 14:49:24 -0800
committerJason Ekstrand <[email protected]>2015-01-15 07:20:23 -0800
commitde73d1e17318b9e7ed9d1f84bef56f6cc09bdf82 (patch)
tree3be213d65f06530a4e96f220e1f57d09a67f55b0 /src/glsl/nir/nir.c
parentcb53aacaa1555b98fa77146492e96a7e3d7631ba (diff)
nir: Rename nir_block_following_if to nir_block_get_following_if
The new name is a little longer but less confusing. Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir.c')
-rw-r--r--src/glsl/nir/nir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/nir/nir.c b/src/glsl/nir/nir.c
index 10e6d0408b9..4b02ec0dd86 100644
--- a/src/glsl/nir/nir.c
+++ b/src/glsl/nir/nir.c
@@ -1947,7 +1947,7 @@ nir_foreach_block_reverse(nir_function_impl *impl, nir_foreach_block_cb cb,
}
nir_if *
-nir_block_following_if(nir_block *block)
+nir_block_get_following_if(nir_block *block)
{
if (exec_node_is_tail_sentinel(&block->cf_node.node))
return NULL;