diff options
author | Jason Ekstrand <[email protected]> | 2016-04-13 16:26:39 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-05-05 16:19:41 -0700 |
commit | 8c807cc2a6b536a737f4ca81143dfd1bb7244e35 (patch) | |
tree | 8122f2d2f5b1ec64d3abaa83dd2d1aa3ec5d2a66 /src/compiler/nir/nir_gather_info.c | |
parent | 331b9f73a27c376dcef903dae1096daf356ceeef (diff) |
nir/gather_info: fixup for new foreach_block()
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Connor Abbott <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir_gather_info.c')
-rw-r--r-- | src/compiler/nir/nir_gather_info.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/compiler/nir/nir_gather_info.c b/src/compiler/nir/nir_gather_info.c index 180ceccff2a..d45b1a2fec0 100644 --- a/src/compiler/nir/nir_gather_info.c +++ b/src/compiler/nir/nir_gather_info.c @@ -68,8 +68,8 @@ gather_tex_info(nir_tex_instr *instr, nir_shader *shader) shader->info.uses_texture_gather = true; } -static bool -gather_info_block(nir_block *block, void *shader) +static void +gather_info_block(nir_block *block, nir_shader *shader) { nir_foreach_instr(instr, block) { switch (instr->type) { @@ -86,8 +86,6 @@ gather_info_block(nir_block *block, void *shader) break; } } - - return true; } /** @@ -157,5 +155,7 @@ nir_shader_gather_info(nir_shader *shader, nir_function_impl *entrypoint) } } - nir_foreach_block_call(entrypoint, gather_info_block, shader); + nir_foreach_block(block, entrypoint) { + gather_info_block(block, shader); + } } |