ir_call: Add method to set the function signature being called
This commit is contained in:
@@ -836,6 +836,14 @@ ir_call::get_error_instruction(void *ctx)
|
|||||||
return call;
|
return call;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
ir_call::set_callee(const ir_function_signature *sig)
|
||||||
|
{
|
||||||
|
assert((this->type == NULL) || (this->type == sig->return_type));
|
||||||
|
|
||||||
|
this->callee = sig;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
visit_exec_list(exec_list *list, ir_visitor *visitor)
|
visit_exec_list(exec_list *list, ir_visitor *visitor)
|
||||||
{
|
{
|
||||||
|
@@ -694,6 +694,11 @@ public:
|
|||||||
return callee;
|
return callee;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the function call target
|
||||||
|
*/
|
||||||
|
void set_callee(const ir_function_signature *sig);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates an inline version of the function before @ir,
|
* Generates an inline version of the function before @ir,
|
||||||
* returning the return value of the function.
|
* returning the return value of the function.
|
||||||
|
Reference in New Issue
Block a user