some very minor tidying of script optimization code/documentation

This commit is contained in:
Vern Paxson 2023-12-08 14:51:39 -05:00 committed by Arne Welzel
parent 8e0a62bfec
commit a824bb1e4b
4 changed files with 5 additions and 6 deletions

View file

@ -460,12 +460,12 @@ FuncTypeInfo::FuncTypeInfo(CPPCompile* _c, TypePtr _t) : AbstractTypeInfo(_c, st
params = f->Params();
yield = f->Yield();
auto gi = c->RegisterType(f->Params());
auto gi = c->RegisterType(params);
if ( gi )
init_cohort = gi->InitCohort();
if ( yield ) {
gi = c->RegisterType(f->Yield());
auto gi = c->RegisterType(f->Yield());
if ( gi )
init_cohort = max(init_cohort, gi->InitCohort());
}