diff options
author | Kenneth Graunke <[email protected]> | 2013-11-22 01:25:42 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-01-13 11:38:19 -0800 |
commit | 5f7e778fa1b1e969a1b15e3650dec49b0026ed08 (patch) | |
tree | 40bd6e3e5175ccd2ca49a783b7680ee2c947b775 /src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp | |
parent | fb6d9798a0c6eefd512f5b0f19eed34af8f4f257 (diff) |
glsl: Convert piles of foreach_iter to the newer foreach_list macro.
foreach_iter and exec_list_iterators have been deprecated for some time now;
we just hadn't ever bothered to convert code to the newer foreach_list
and foreach_list_safe macros.
In these cases, we aren't editing the list, so we can use foreach_list
rather than foreach_list_safe.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp b/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp index 95c8d9f705a..4ecc4a288e2 100644 --- a/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp +++ b/src/mesa/drivers/dri/i965/brw_vec4_reg_allocate.cpp @@ -56,8 +56,8 @@ vec4_visitor::reg_allocate_trivial() virtual_grf_used[i] = false; } - foreach_iter(exec_list_iterator, iter, this->instructions) { - vec4_instruction *inst = (vec4_instruction *)iter.get(); + foreach_list(node, &this->instructions) { + vec4_instruction *inst = (vec4_instruction *) node; if (inst->dst.file == GRF) virtual_grf_used[inst->dst.reg] = true; @@ -78,8 +78,8 @@ vec4_visitor::reg_allocate_trivial() } prog_data->total_grf = next; - foreach_iter(exec_list_iterator, iter, this->instructions) { - vec4_instruction *inst = (vec4_instruction *)iter.get(); + foreach_list(node, &this->instructions) { + vec4_instruction *inst = (vec4_instruction *) node; assign(hw_reg_mapping, &inst->dst); assign(hw_reg_mapping, &inst->src[0]); |