summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ir.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ir.h b/ir.h
index 04ac0b3e01..98455f7c37 100644
--- a/ir.h
+++ b/ir.h
@@ -319,6 +319,14 @@ public:
*/
static ir_call *get_error_instruction();
+ /**
+ * Get an iterator for the set of acutal parameters
+ */
+ exec_list_iterator iterator()
+ {
+ return actual_parameters.iterator();
+ }
+
private:
ir_call()
: ir_rvalue(), callee(NULL)