summaryrefslogtreecommitdiff
path: root/src/glsl/ir_hv_accept.cpp
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-07-08 13:08:14 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-07-09 09:46:29 -0700
commita4dde28ee6893ab99c6ca93699392bb8bc2d981c (patch)
treeebc81c25e73ac18261046b9e8be6dcc960ff3454 /src/glsl/ir_hv_accept.cpp
parentf3290e950cd78a423d380b7e0a7aa18eb7718e27 (diff)
glsl2: Use new foreach_list_safe abstraction.
Diffstat (limited to 'src/glsl/ir_hv_accept.cpp')
-rw-r--r--src/glsl/ir_hv_accept.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/glsl/ir_hv_accept.cpp b/src/glsl/ir_hv_accept.cpp
index 1a88c59439..46bc5b17fe 100644
--- a/src/glsl/ir_hv_accept.cpp
+++ b/src/glsl/ir_hv_accept.cpp
@@ -32,20 +32,16 @@
/**
* Process a list of nodes using a hierarchical vistor
*
- * \warning
* This function will operate correctly if a node being processed is removed
- * from list. However, if nodes are added to the list after the node being
- * processed, some of the added noded may not be processed.
+ * from the list. If nodes are inserted before the current node, they will be
+ * processed next.
*/
ir_visitor_status
visit_list_elements(ir_hierarchical_visitor *v, exec_list *l)
{
- exec_node *next;
ir_instruction *prev_base_ir = v->base_ir;
- for (exec_node *n = l->head; n->next != NULL; n = next) {
- next = n->next;
-
+ foreach_list_safe(n, l) {
ir_instruction *const ir = (ir_instruction *) n;
v->base_ir = ir;
ir_visitor_status s = ir->accept(v);