fixed cut-and-paste botch (redundant line of code)

This commit is contained in:
Vern Paxson 2021-05-09 14:42:03 -07:00
parent 1b825c51de
commit e697f351ad

View file

@ -122,7 +122,6 @@ void optimize_func(ScriptFunc* f, std::shared_ptr<ProfileFunc> pf,
// Profile the new body.
pf = std::make_shared<ProfileFunc>(f, body, true);
pf = std::make_shared<ProfileFunc>(f, body, true);
// Compute its reaching definitions.
RD_Decorate reduced_rds(pf);