summaryrefslogtreecommitdiff
path: root/src/glsl/ir_variable_refcount.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-08-24 10:01:40 -0600
committerBrian Paul <brianp@vmware.com>2010-08-24 10:01:44 -0600
commit2eb8b2d3bb68cef1d3fc431debe1b18f6c017aeb (patch)
treee06be65c90be40c4bc515b280afce4d522638217 /src/glsl/ir_variable_refcount.h
parentf3ec111b0af9d268e6b3c6d3226a448d19e45d8c (diff)
glsl2: move constructor into .cpp file to work around compiler bug
Fixes fd.o bug 29770 The refcount==0 assertion only failed on some systems. One example being 32-bit Linux with gcc 4.4.4.
Diffstat (limited to 'src/glsl/ir_variable_refcount.h')
-rw-r--r--src/glsl/ir_variable_refcount.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/glsl/ir_variable_refcount.h b/src/glsl/ir_variable_refcount.h
index 059ea097a6..8b43bad71f 100644
--- a/src/glsl/ir_variable_refcount.h
+++ b/src/glsl/ir_variable_refcount.h
@@ -36,14 +36,7 @@
class variable_entry : public exec_node
{
public:
- variable_entry(ir_variable *var)
- {
- this->var = var;
- assign = NULL;
- referenced_count = 0;
- assigned_count = 0;
- declaration = false;
- }
+ variable_entry(ir_variable *var);
ir_variable *var; /* The key: the variable's pointer. */
ir_assignment *assign; /* An assignment to the variable, if any */