summaryrefslogtreecommitdiffstats
path: root/src/glsl/link_functions.cpp
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-06-24 22:29:08 -0700
committerMatt Turner <[email protected]>2014-07-01 08:55:51 -0700
commitd49173a97b2756c3bc12411b26f98c5b22d94e22 (patch)
tree8e68202c9ccf03404b6d5e7dd7bc95fb1f9725ed /src/glsl/link_functions.cpp
parentfd8f65498a407fd8d4a17fd622755f14c27d014a (diff)
glsl: Replace uses of foreach_list_const.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/link_functions.cpp')
-rw-r--r--src/glsl/link_functions.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/glsl/link_functions.cpp b/src/glsl/link_functions.cpp
index 56f3f207ee8..2ce9609b55d 100644
--- a/src/glsl/link_functions.cpp
+++ b/src/glsl/link_functions.cpp
@@ -145,8 +145,7 @@ public:
struct hash_table *ht = hash_table_ctor(0, hash_table_pointer_hash,
hash_table_pointer_compare);
exec_list formal_parameters;
- foreach_list_const(node, &sig->parameters) {
- const ir_instruction *const original = (ir_instruction *) node;
+ foreach_in_list(const ir_instruction, original, &sig->parameters) {
assert(const_cast<ir_instruction *>(original)->as_variable());
ir_instruction *copy = original->clone(linked, ht);
@@ -156,9 +155,7 @@ public:
linked_sig->replace_parameters(&formal_parameters);
if (sig->is_defined) {
- foreach_list_const(node, &sig->body) {
- const ir_instruction *const original = (ir_instruction *) node;
-
+ foreach_in_list(const ir_instruction, original, &sig->body) {
ir_instruction *copy = original->clone(linked, ht);
linked_sig->body.push_tail(copy);
}