mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed forceLink awareness of inlines
This commit is contained in:
parent
625e495291
commit
0ae14f5a5d
1 changed files with 2 additions and 2 deletions
|
@ -20843,8 +20843,8 @@ void BfModule::DbgFinish()
|
||||||
bool hasConfirmedReference = false;
|
bool hasConfirmedReference = false;
|
||||||
for (auto& methodInstGroup : ownedType->mMethodInstanceGroups)
|
for (auto& methodInstGroup : ownedType->mMethodInstanceGroups)
|
||||||
{
|
{
|
||||||
if ((methodInstGroup.IsImplemented()) && (methodInstGroup.mDefault != NULL) &&
|
if ((methodInstGroup.IsImplemented()) && (methodInstGroup.mDefault != NULL) &&
|
||||||
(!methodInstGroup.mDefault->mMethodDef->mIsStatic) && (methodInstGroup.mDefault->mIsReified) &&
|
(!methodInstGroup.mDefault->mMethodDef->mIsStatic) && (methodInstGroup.mDefault->mIsReified) && (!methodInstGroup.mDefault->mAlwaysInline) &&
|
||||||
((methodInstGroup.mOnDemandKind == BfMethodOnDemandKind_AlwaysInclude) || (methodInstGroup.mOnDemandKind == BfMethodOnDemandKind_Referenced)))
|
((methodInstGroup.mOnDemandKind == BfMethodOnDemandKind_AlwaysInclude) || (methodInstGroup.mOnDemandKind == BfMethodOnDemandKind_Referenced)))
|
||||||
{
|
{
|
||||||
hasConfirmedReference = true;
|
hasConfirmedReference = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue