suppress unneeded initializations

This commit is contained in:
Vern Paxson 2021-11-24 12:17:16 -08:00
parent a830c269ab
commit a2cec7463f
3 changed files with 26 additions and 23 deletions

View file

@ -240,6 +240,9 @@ void CPPCompile::GenStandaloneActivation()
for ( const auto& func : funcs )
{
if ( func.ShouldSkip() )
continue;
auto f = func.Func();
auto fname = BodyName(func);
auto bname = Canonicalize(fname.c_str()) + "_zf";