mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
Add ir_call::iterator to iterate over actual parameters
This commit is contained in:
parent
605ff69b0d
commit
9878c6518f
1 changed files with 8 additions and 0 deletions
8
ir.h
8
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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue