summaryrefslogtreecommitdiff
path: root/src/glsl/ir_function_inlining.cpp
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-07-19 21:44:03 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-07-21 16:37:57 -0700
commitc7a18da69022d3f9b05c21ff2473e8ea390f77f1 (patch)
tree573f255e2bdf860a51dd6f9398547ffb45fef822 /src/glsl/ir_function_inlining.cpp
parentd5be2acae379783c4aa31243e0a88a9e67e6ca7e (diff)
glsl2: Replace insert_before/remove pairs with exec_node::replace_with.
Diffstat (limited to 'src/glsl/ir_function_inlining.cpp')
-rw-r--r--src/glsl/ir_function_inlining.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/glsl/ir_function_inlining.cpp b/src/glsl/ir_function_inlining.cpp
index 05dd83f7ff..c391f12d88 100644
--- a/src/glsl/ir_function_inlining.cpp
+++ b/src/glsl/ir_function_inlining.cpp
@@ -91,8 +91,7 @@ replace_return_with_assignment(ir_instruction *ir, void *data)
if (ret) {
if (ret->value) {
ir_rvalue *lhs = new(ctx) ir_dereference_variable(retval);
- ret->insert_before(new(ctx) ir_assignment(lhs, ret->value, NULL));
- ret->remove();
+ ret->replace_with(new(ctx) ir_assignment(lhs, ret->value, NULL));
} else {
/* un-valued return has to be the last return, or we shouldn't
* have reached here. (see can_inline()).