mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fixed forcing creating of func with unreified methods
This commit is contained in:
parent
b1720508ec
commit
e911f02288
1 changed files with 1 additions and 1 deletions
|
@ -4097,7 +4097,7 @@ void BfModule::AddMethodToWorkList(BfMethodInstance* methodInstance)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!methodInstance->mIRFunction) && (!methodInstance->mIsUnspecialized))
|
if ((!mCompiler->mIsResolveOnly) && (!methodInstance->mIRFunction) && (methodInstance->mIsReified) && (!methodInstance->mIsUnspecialized))
|
||||||
{
|
{
|
||||||
if (!mIsModuleMutable)
|
if (!mIsModuleMutable)
|
||||||
StartExtension();
|
StartExtension();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue