nir: rename nir_foreach_block*() to nir_foreach_block*_call()

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Connor Abbott
2016-04-13 16:25:34 -04:00
committed by Jason Ekstrand
parent 7143068296
commit b6dc940ec2
59 changed files with 92 additions and 89 deletions

View File

@@ -146,7 +146,7 @@ find_output(nir_shader *shader, unsigned drvloc)
nir_foreach_function(shader, function) {
if (function->impl) {
nir_foreach_block_reverse(function->impl,
nir_foreach_block_reverse_call(function->impl,
find_output_in_block, &state);
}
}