glsl: Fix lower_discard_flow prototype mismatch.
[mesa.git] / src / glsl / ir_variable_refcount.h
index 906135a9e1e370ad2d7bf64c65e864ccb58ec221..51a4945a135289f23d4cefa7b12a301507844344 100644 (file)
 #include "ir_visitor.h"
 #include "glsl_types.h"
 
-class variable_entry : public exec_node
+class ir_variable_refcount_entry : public exec_node
 {
 public:
-   variable_entry(ir_variable *var);
+   ir_variable_refcount_entry(ir_variable *var);
 
    ir_variable *var; /* The key: the variable's pointer. */
    ir_assignment *assign; /* An assignment to the variable, if any */
@@ -69,9 +69,9 @@ public:
    virtual ir_visitor_status visit_enter(ir_function_signature *);
    virtual ir_visitor_status visit_leave(ir_assignment *);
 
-   variable_entry *get_variable_entry(ir_variable *var);
+   ir_variable_refcount_entry *get_variable_entry(ir_variable *var);
 
-   /* List of variable_entry */
+   /* List of ir_variable_refcount_entry */
    exec_list variable_list;
 
    void *mem_ctx;