mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-24 18:48:01 +02:00
Improved virtual overrides in extensions
This commit is contained in:
parent
8a84647bcd
commit
e1d7939081
11 changed files with 116 additions and 11 deletions
|
@ -5314,6 +5314,12 @@ BfIRFunction BfIRBuilder::CreateFunction(BfIRFunctionType funcType, BfIRLinkageT
|
|||
return retVal;
|
||||
}
|
||||
|
||||
void BfIRBuilder::SetFunctionName(BfIRValue func, const StringImpl& name)
|
||||
{
|
||||
WriteCmd(BfIRCmd_SetFunctionName, func, name);
|
||||
NEW_CMD_INSERTED_IRVALUE;
|
||||
}
|
||||
|
||||
void BfIRBuilder::EnsureFunctionPatchable()
|
||||
{
|
||||
BfIRValue retVal = WriteCmd(BfIRCmd_EnsureFunctionPatchable);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue