fix for tracking BiFs seen in attribute expressions

This commit is contained in:
Vern Paxson 2025-09-20 11:56:54 -07:00
parent 42656e1da0
commit 29539a5880

View file

@ -86,6 +86,9 @@ void CPPCompile::Compile(bool report_uncompilable) {
}
}
for ( auto& g : pfs->BiFGlobals() )
all_accessed_globals.insert(g);
for ( auto& t : pfs->MainTypes() )
if ( obj_matches_opt_files(t) == AnalyzeDecision::SHOULD )
rep_types.insert(TypeRep(t));