mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed inlining issue with reflection data
This commit is contained in:
parent
ad987a58bd
commit
04de0512c3
1 changed files with 1 additions and 1 deletions
|
@ -12145,7 +12145,7 @@ BfModuleMethodInstance BfModule::GetMethodInstance(BfTypeInstance* typeInst, BfM
|
||||||
methodInstance->mDeclModule = this;
|
methodInstance->mDeclModule = this;
|
||||||
|
|
||||||
// Add this inlined def to ourselves
|
// Add this inlined def to ourselves
|
||||||
if ((methodInstance->mAlwaysInline) && (HasCompiledOutput()) && (!methodInstance->mIsUnspecialized))
|
if ((methodInstance->mAlwaysInline) && (HasCompiledOutput()) && (!methodInstance->mIsUnspecialized) && ((flags & BfGetMethodInstanceFlag_NoInline) == 0))
|
||||||
{
|
{
|
||||||
mIncompleteMethodCount++;
|
mIncompleteMethodCount++;
|
||||||
BfInlineMethodRequest* inlineMethodRequest = mContext->mInlineMethodWorkList.Alloc();
|
BfInlineMethodRequest* inlineMethodRequest = mContext->mInlineMethodWorkList.Alloc();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue