mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
ir_function_signature: Make actual_parameters public
This commit is contained in:
parent
3880d07f4b
commit
a48a2b66e8
1 changed files with 3 additions and 3 deletions
|
|
@ -746,6 +746,9 @@ public:
|
|||
*/
|
||||
ir_rvalue *generate_inline(ir_instruction *ir);
|
||||
|
||||
/* List of ir_rvalue of paramaters passed in this call. */
|
||||
exec_list actual_parameters;
|
||||
|
||||
private:
|
||||
ir_call()
|
||||
: callee(NULL)
|
||||
|
|
@ -754,9 +757,6 @@ private:
|
|||
}
|
||||
|
||||
ir_function_signature *callee;
|
||||
|
||||
/* List of ir_rvalue of paramaters passed in this call. */
|
||||
exec_list actual_parameters;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue