1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Fixed ConstEval failed params generation infinite loop

This commit is contained in:
Brian Fiete 2023-11-09 09:48:11 -05:00
parent b889a7e208
commit 6b469c4c39

View file

@ -7879,8 +7879,8 @@ BfTypedValue BfExprEvaluator::CreateCall(BfAstNode* targetSrc, const BfTypedValu
expandedParamsArray = BfTypedValue(mModule->mBfIRBuilder->CreateConstAgg(irSizedArrayType, values), wantType);
PushArg(expandedParamsArray, irArgs);
continue;
}
continue;
}
else if (wantType->IsArray())
{