summaryrefslogtreecommitdiff
path: root/src/glsl
diff options
context:
space:
mode:
authorVincent Lejeune <vljn@ovi.com>2012-11-23 17:53:06 +0100
committerVincent Lejeune <vljn@ovi.com>2012-12-05 18:23:42 +0100
commite9f090e8b2ca2eda3e9a1b1c3ba4acce843720ba (patch)
tree65be1e7edbd4d59498d5f6a2c7670b8325f55857 /src/glsl
parentd2c7fe5389e40871a7e339dc0ecaa7f570f851ed (diff)
glsl: add new variable declaration in function body in lower_output_read
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
Diffstat (limited to 'src/glsl')
-rw-r--r--src/glsl/lower_output_reads.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/lower_output_reads.cpp b/src/glsl/lower_output_reads.cpp
index 90d71b04a1f..a6192a51707 100644
--- a/src/glsl/lower_output_reads.cpp
+++ b/src/glsl/lower_output_reads.cpp
@@ -97,6 +97,7 @@ output_read_remover::visit(ir_dereference_variable *ir)
temp = new(var_ctx) ir_variable(ir->var->type, ir->var->name,
ir_var_temporary);
hash_table_insert(replacements, temp, ir->var);
+ ir->var->insert_after(temp);
}
/* Update the dereference to use the temporary */