[Mesa-dev] [PATCH 34/47] nir/opt_remove_phis: fixup for new foreach_block()
Connor Abbott
cwabbott0 at gmail.com
Wed Apr 13 04:35:13 UTC 2016
Signed-off-by: Connor Abbott <cwabbott0 at gmail.com>
---
src/compiler/nir/nir_opt_remove_phis.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/src/compiler/nir/nir_opt_remove_phis.c b/src/compiler/nir/nir_opt_remove_phis.c
index 6461837..4158ee4 100644
--- a/src/compiler/nir/nir_opt_remove_phis.c
+++ b/src/compiler/nir/nir_opt_remove_phis.c
@@ -43,9 +43,9 @@
*/
static bool
-remove_phis_block(nir_block *block, void *state)
+remove_phis_block(nir_block *block)
{
- bool *progress = state;
+ bool progress = false;
nir_foreach_instr_safe(block, instr) {
if (instr->type != nir_instr_type_phi)
@@ -95,10 +95,10 @@ remove_phis_block(nir_block *block, void *state)
nir_ssa_def_rewrite_uses(&phi->dest.ssa, nir_src_for_ssa(def));
nir_instr_remove(instr);
- *progress = true;
+ progress = true;
}
- return true;
+ return progress;
}
static bool
@@ -106,7 +106,9 @@ remove_phis_impl(nir_function_impl *impl)
{
bool progress = false;
- nir_foreach_block(impl, remove_phis_block, &progress);
+ nir_foreach_block(impl, block) {
+ progress |= remove_phis_block(block);
+ }
if (progress) {
nir_metadata_preserve(impl, nir_metadata_block_index |
--
2.5.0
More information about the mesa-dev
mailing list