From e697f351ad29ad1c365134c28d1cb72913e7d06f Mon Sep 17 00:00:00 2001 From: Vern Paxson Date: Sun, 9 May 2021 14:42:03 -0700 Subject: [PATCH] fixed cut-and-paste botch (redundant line of code) --- src/script_opt/ScriptOpt.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/script_opt/ScriptOpt.cc b/src/script_opt/ScriptOpt.cc index 1d53ed6ef2..5bfc4dfee3 100644 --- a/src/script_opt/ScriptOpt.cc +++ b/src/script_opt/ScriptOpt.cc @@ -122,7 +122,6 @@ void optimize_func(ScriptFunc* f, std::shared_ptr pf, // Profile the new body. pf = std::make_shared(f, body, true); - pf = std::make_shared(f, body, true); // Compute its reaching definitions. RD_Decorate reduced_rds(pf);