mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed assertion in generic AllowAppend ctor
This commit is contained in:
parent
052edbcb8d
commit
ca83467e1b
1 changed files with 10 additions and 2 deletions
|
@ -16808,8 +16808,16 @@ BfTypedValue BfModule::CallBaseCtorCalc(bool constOnly)
|
||||||
bindResult.mIRArgs.RemoveAt(0);
|
bindResult.mIRArgs.RemoveAt(0);
|
||||||
calcAppendArgs = bindResult.mIRArgs;
|
calcAppendArgs = bindResult.mIRArgs;
|
||||||
}
|
}
|
||||||
BF_ASSERT(calcAppendMethodModule.mFunc);
|
|
||||||
appendSizeTypedValue = exprEvaluator.CreateCall(NULL, calcAppendMethodModule.mMethodInstance, calcAppendMethodModule.mFunc, false, calcAppendArgs);
|
if (mBfIRBuilder->mIgnoreWrites)
|
||||||
|
{
|
||||||
|
appendSizeTypedValue = GetFakeTypedValue(GetPrimitiveType(BfTypeCode_IntPtr));
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
BF_ASSERT(calcAppendMethodModule.mFunc);
|
||||||
|
appendSizeTypedValue = exprEvaluator.CreateCall(NULL, calcAppendMethodModule.mMethodInstance, calcAppendMethodModule.mFunc, false, calcAppendArgs);
|
||||||
|
}
|
||||||
|
|
||||||
BF_ASSERT(appendSizeTypedValue.mType == GetPrimitiveType(BfTypeCode_IntPtr));
|
BF_ASSERT(appendSizeTypedValue.mType == GetPrimitiveType(BfTypeCode_IntPtr));
|
||||||
return appendSizeTypedValue;
|
return appendSizeTypedValue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue