diff options
author | Matt Turner <[email protected]> | 2014-06-24 16:31:38 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-07-01 08:55:51 -0700 |
commit | 266109736a9a69c3fdbe49fe1665a7a63c5cc122 (patch) | |
tree | b3fa310a9a6a5b59c77af877b513f427d3135c64 /src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp | |
parent | c5030ac0ac15d3c91c4352789f94281da9a9dcad (diff) |
i965: Use typed foreach_in_list_safe instead of foreach_list_safe.
Acked-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp index 7db5df403e0..72329e15ed6 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp @@ -545,9 +545,7 @@ fs_visitor::opt_copy_propagate_local(void *copy_prop_ctx, bblock_t *block, /* kill the destination from the ACP */ if (inst->dst.file == GRF) { - foreach_list_safe(entry_node, &acp[inst->dst.reg % ACP_HASH_SIZE]) { - acp_entry *entry = (acp_entry *)entry_node; - + foreach_in_list_safe(acp_entry, entry, &acp[inst->dst.reg % ACP_HASH_SIZE]) { if (inst->overwrites_reg(entry->dst)) { entry->remove(); } @@ -557,8 +555,7 @@ fs_visitor::opt_copy_propagate_local(void *copy_prop_ctx, bblock_t *block, * the source, so walk across the entire table. */ for (int i = 0; i < ACP_HASH_SIZE; i++) { - foreach_list_safe(entry_node, &acp[i]) { - acp_entry *entry = (acp_entry *)entry_node; + foreach_in_list_safe(acp_entry, entry, &acp[i]) { if (inst->overwrites_reg(entry->src)) entry->remove(); } |