summaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_lower_to_source_mods.c
diff options
context:
space:
mode:
authorConnor Abbott <cwabbott0@gmail.com>2016-04-13 16:25:34 -0400
committerJason Ekstrand <jason.ekstrand@intel.com>2016-04-20 09:47:05 -0700
commitb6dc940ec273252678d40707d300851fa1c85ea5 (patch)
tree3709a76d6d2bff986f8d8ee0700c3fc072c68f48 /src/compiler/nir/nir_lower_to_source_mods.c
parent7143068296aaca8c5af3469c013a7c2a850aee84 (diff)
downloadexternal_mesa3d-b6dc940ec273252678d40707d300851fa1c85ea5.zip
external_mesa3d-b6dc940ec273252678d40707d300851fa1c85ea5.tar.gz
external_mesa3d-b6dc940ec273252678d40707d300851fa1c85ea5.tar.bz2
nir: rename nir_foreach_block*() to nir_foreach_block*_call()
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Diffstat (limited to 'src/compiler/nir/nir_lower_to_source_mods.c')
-rw-r--r--src/compiler/nir/nir_lower_to_source_mods.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/nir/nir_lower_to_source_mods.c b/src/compiler/nir/nir_lower_to_source_mods.c
index 1e8c3c2..369570e 100644
--- a/src/compiler/nir/nir_lower_to_source_mods.c
+++ b/src/compiler/nir/nir_lower_to_source_mods.c
@@ -184,7 +184,7 @@ nir_lower_to_source_mods_block(nir_block *block, void *state)
static void
nir_lower_to_source_mods_impl(nir_function_impl *impl)
{
- nir_foreach_block(impl, nir_lower_to_source_mods_block, NULL);
+ nir_foreach_block_call(impl, nir_lower_to_source_mods_block, NULL);
}
void