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/gallium/drivers/vc4/vc4_nir_lower_io.c | |
parent | 7143068296aaca8c5af3469c013a7c2a850aee84 (diff) |
nir: rename nir_foreach_block*() to nir_foreach_block*_call()
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/gallium/drivers/vc4/vc4_nir_lower_io.c')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_nir_lower_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_nir_lower_io.c b/src/gallium/drivers/vc4/vc4_nir_lower_io.c index 22c602adb54..be89bfcc937 100644 --- a/src/gallium/drivers/vc4/vc4_nir_lower_io.c +++ b/src/gallium/drivers/vc4/vc4_nir_lower_io.c @@ -446,7 +446,7 @@ vc4_nir_lower_io_block(nir_block *block, void *arg) static bool vc4_nir_lower_io_impl(struct vc4_compile *c, nir_function_impl *impl) { - nir_foreach_block(impl, vc4_nir_lower_io_block, c); + nir_foreach_block_call(impl, vc4_nir_lower_io_block, c); nir_metadata_preserve(impl, nir_metadata_block_index | nir_metadata_dominance); |