glsl2: move constructor into .cpp file to work around compiler bug
authorBrian Paul <brianp@vmware.com>
Tue, 24 Aug 2010 16:01:40 +0000 (10:01 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 24 Aug 2010 16:01:44 +0000 (10:01 -0600)
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.

src/glsl/ir_variable_refcount.cpp
src/glsl/ir_variable_refcount.h

index 6614727..7d39abb 100644 (file)
 #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)
 {
index 059ea09..8b43bad 100644 (file)
 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 */