diff options
author | Brian Paul <brianp@vmware.com> | 2010-08-24 10:01:40 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-08-24 10:01:44 -0600 |
commit | 2eb8b2d3bb68cef1d3fc431debe1b18f6c017aeb (patch) | |
tree | e06be65c90be40c4bc515b280afce4d522638217 /src/glsl/ir_variable_refcount.cpp | |
parent | f3ec111b0af9d268e6b3c6d3226a448d19e45d8c (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.cpp')
-rw-r--r-- | src/glsl/ir_variable_refcount.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/glsl/ir_variable_refcount.cpp b/src/glsl/ir_variable_refcount.cpp index 66147279be..7d39abb368 100644 --- a/src/glsl/ir_variable_refcount.cpp +++ b/src/glsl/ir_variable_refcount.cpp @@ -34,6 +34,18 @@ #include "ir_variable_refcount.h" #include "glsl_types.h" + +// constructor +variable_entry::variable_entry(ir_variable *var) +{ + this->var = var; + assign = NULL; + assigned_count = 0; + declaration = false; + referenced_count = 0; +} + + variable_entry * ir_variable_refcount_visitor::get_variable_entry(ir_variable *var) { |