diff options
author | Eric Engestrom <[email protected]> | 2018-10-20 18:00:08 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2018-10-25 12:43:18 +0100 |
commit | bb84fa146f2252f22999205a2904d8a948bffd3b (patch) | |
tree | 2e4773252d67da46590ec4a545fc10f6125043a9 /src/compiler/nir | |
parent | 3d261cf77b35c56cc575ce9bb7909d2f8d920233 (diff) |
util: use C99 declaration in the for-loop hash_table_foreach() macro
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/compiler/nir')
-rw-r--r-- | src/compiler/nir/nir_lower_global_vars_to_local.c | 1 | ||||
-rw-r--r-- | src/compiler/nir/nir_lower_io_arrays_to_elements.c | 3 | ||||
-rw-r--r-- | src/compiler/nir/nir_lower_io_to_scalar.c | 1 | ||||
-rw-r--r-- | src/compiler/nir/nir_opt_copy_prop_vars.c | 2 | ||||
-rw-r--r-- | src/compiler/nir/nir_validate.c | 7 |
5 files changed, 0 insertions, 14 deletions
diff --git a/src/compiler/nir/nir_lower_global_vars_to_local.c b/src/compiler/nir/nir_lower_global_vars_to_local.c index d441215a44d..be99cf9ad02 100644 --- a/src/compiler/nir/nir_lower_global_vars_to_local.c +++ b/src/compiler/nir/nir_lower_global_vars_to_local.c @@ -85,7 +85,6 @@ nir_lower_global_vars_to_local(nir_shader *shader) } } - struct hash_entry *entry; hash_table_foreach(var_func_table, entry) { nir_variable *var = (void *)entry->key; nir_function_impl *impl = entry->data; diff --git a/src/compiler/nir/nir_lower_io_arrays_to_elements.c b/src/compiler/nir/nir_lower_io_arrays_to_elements.c index 432524c2feb..f0bc487d6be 100644 --- a/src/compiler/nir/nir_lower_io_arrays_to_elements.c +++ b/src/compiler/nir/nir_lower_io_arrays_to_elements.c @@ -359,7 +359,6 @@ nir_lower_io_arrays_to_elements_no_indirects(nir_shader *shader, patch_indirects, split_inputs, true); /* Remove old input from the shaders inputs list */ - struct hash_entry *entry; hash_table_foreach(split_inputs, entry) { nir_variable *var = (nir_variable *) entry->key; exec_node_remove(&var->node); @@ -369,7 +368,6 @@ nir_lower_io_arrays_to_elements_no_indirects(nir_shader *shader, } /* Remove old output from the shaders outputs list */ - struct hash_entry *entry; hash_table_foreach(split_outputs, entry) { nir_variable *var = (nir_variable *) entry->key; exec_node_remove(&var->node); @@ -406,7 +404,6 @@ nir_lower_io_arrays_to_elements(nir_shader *producer, nir_shader *consumer) patch_indirects, split_inputs, false); /* Remove old input from the shaders inputs list */ - struct hash_entry *entry; hash_table_foreach(split_inputs, entry) { nir_variable *var = (nir_variable *) entry->key; exec_node_remove(&var->node); diff --git a/src/compiler/nir/nir_lower_io_to_scalar.c b/src/compiler/nir/nir_lower_io_to_scalar.c index f0c2a6a95d6..2b98e298cce 100644 --- a/src/compiler/nir/nir_lower_io_to_scalar.c +++ b/src/compiler/nir/nir_lower_io_to_scalar.c @@ -360,7 +360,6 @@ nir_lower_io_to_scalar_early(nir_shader *shader, nir_variable_mode mask) } /* Remove old input from the shaders inputs list */ - struct hash_entry *entry; hash_table_foreach(split_inputs, entry) { nir_variable *var = (nir_variable *) entry->key; exec_node_remove(&var->node); diff --git a/src/compiler/nir/nir_opt_copy_prop_vars.c b/src/compiler/nir/nir_opt_copy_prop_vars.c index b664ef27d35..7a21ad56c79 100644 --- a/src/compiler/nir/nir_opt_copy_prop_vars.c +++ b/src/compiler/nir/nir_opt_copy_prop_vars.c @@ -201,7 +201,6 @@ gather_vars_written(struct copy_prop_var_state *state, /* Merge new information to the parent control flow node. */ if (written) { written->modes |= new_written->modes; - struct hash_entry *new_entry; hash_table_foreach(new_written->derefs, new_entry) { struct hash_entry *old_entry = _mesa_hash_table_search_pre_hashed(written->derefs, new_entry->hash, @@ -575,7 +574,6 @@ invalidate_copies_for_cf_node(struct copy_prop_var_state *state, } } - struct hash_entry *entry; hash_table_foreach (written->derefs, entry) { nir_deref_instr *deref_written = (nir_deref_instr *)entry->key; kill_aliases(copies, deref_written, (uintptr_t)entry->data); diff --git a/src/compiler/nir/nir_validate.c b/src/compiler/nir/nir_validate.c index 1852224b520..cf7ef91f08c 100644 --- a/src/compiler/nir/nir_validate.c +++ b/src/compiler/nir/nir_validate.c @@ -727,7 +727,6 @@ validate_block(nir_block *block, validate_state *state) } } - struct set_entry *entry; set_foreach(block->predecessors, entry) { const nir_block *pred = entry->key; validate_assert(state, pred->successors[0] == block || @@ -936,7 +935,6 @@ postvalidate_reg_decl(nir_register *reg, validate_state *state) if (reg_state->uses->entries != 0) { printf("extra entries in register uses:\n"); - struct set_entry *entry; set_foreach(reg_state->uses, entry) printf("%p\n", entry->key); @@ -951,7 +949,6 @@ postvalidate_reg_decl(nir_register *reg, validate_state *state) if (reg_state->if_uses->entries != 0) { printf("extra entries in register if_uses:\n"); - struct set_entry *entry; set_foreach(reg_state->if_uses, entry) printf("%p\n", entry->key); @@ -966,7 +963,6 @@ postvalidate_reg_decl(nir_register *reg, validate_state *state) if (reg_state->defs->entries != 0) { printf("extra entries in register defs:\n"); - struct set_entry *entry; set_foreach(reg_state->defs, entry) printf("%p\n", entry->key); @@ -1033,7 +1029,6 @@ postvalidate_ssa_def(nir_ssa_def *def, void *void_state) if (def_state->uses->entries != 0) { printf("extra entries in SSA def uses:\n"); - struct set_entry *entry; set_foreach(def_state->uses, entry) printf("%p\n", entry->key); @@ -1048,7 +1043,6 @@ postvalidate_ssa_def(nir_ssa_def *def, void *void_state) if (def_state->if_uses->entries != 0) { printf("extra entries in SSA def uses:\n"); - struct set_entry *entry; set_foreach(def_state->if_uses, entry) printf("%p\n", entry->key); @@ -1157,7 +1151,6 @@ dump_errors(validate_state *state) if (_mesa_hash_table_num_entries(errors) > 0) { fprintf(stderr, "%d additional errors:\n", _mesa_hash_table_num_entries(errors)); - struct hash_entry *entry; hash_table_foreach(errors, entry) { fprintf(stderr, "%s\n", (char *)entry->data); } |