summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2014-06-24 16:31:38 -0700
committerMatt Turner <mattst88@gmail.com>2014-07-01 08:55:51 -0700
commit266109736a9a69c3fdbe49fe1665a7a63c5cc122 (patch)
treeb3fa310a9a6a5b59c77af877b513f427d3135c64 /src/mesa/drivers/dri/i965/brw_fs_copy_propagation.cpp
parentc5030ac0ac15d3c91c4352789f94281da9a9dcad (diff)
downloadexternal_mesa3d-266109736a9a69c3fdbe49fe1665a7a63c5cc122.zip
external_mesa3d-266109736a9a69c3fdbe49fe1665a7a63c5cc122.tar.gz
external_mesa3d-266109736a9a69c3fdbe49fe1665a7a63c5cc122.tar.bz2
i965: Use typed foreach_in_list_safe instead of foreach_list_safe.
Acked-by: Ian Romanick <ian.d.romanick@intel.com>
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.cpp7
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 7db5df4..72329e1 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();
}