ir_function constructor now takes the function name as a parameter
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 24 Mar 2010 00:42:04 +0000 (17:42 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Wed, 24 Mar 2010 00:42:04 +0000 (17:42 -0700)
ast_to_hir.cpp
ir.cpp
ir.h

index ace8071..f7c82fa 100644 (file)
@@ -1095,9 +1095,7 @@ ast_function_definition::hir(exec_list *instructions,
                       "non-function", name);
       signature = NULL;
    } else {
-      f = new ir_function();
-      f->name = name;
-
+      f = new ir_function(name);
       state->symbols->add_function(f->name, f);
    }
 
diff --git a/ir.cpp b/ir.cpp
index 4f7ea1b..26e7394 100644 (file)
--- a/ir.cpp
+++ b/ir.cpp
@@ -103,8 +103,8 @@ ir_function_signature::ir_function_signature(const glsl_type *return_type)
 }
 
 
-ir_function::ir_function(void)
-   : ir_instruction(ir_op_func)
+ir_function::ir_function(const char *name)
+   : ir_instruction(ir_op_func), name(name)
 {
    /* empty */
 }
diff --git a/ir.h b/ir.h
index 997a37c..7db617d 100644 (file)
--- a/ir.h
+++ b/ir.h
@@ -157,7 +157,7 @@ public:
  */
 class ir_function : public ir_instruction {
 public:
-   ir_function(void);
+   ir_function(const char *name);
 
    virtual void accept(ir_visitor *v)
    {