summaryrefslogtreecommitdiff
path: root/ir.h
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2010-03-23 17:42:04 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-03-23 17:42:04 -0700
commit882dad75408fc4071a9dd700309f9e54f6ad2650 (patch)
tree17f121512b52bfcbeaf4f4158fb50514f039aa6c /ir.h
parentbb7e00a1cd63f3012226253bb0121922419a5f23 (diff)
ir_function constructor now takes the function name as a parameter
Diffstat (limited to 'ir.h')
-rw-r--r--ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ir.h b/ir.h
index 997a37c079..7db617d65b 100644
--- 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)
{