From 10ae10d4e4ed3c51096b73bf193d36c97be7649c Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Wed, 6 Jan 2021 22:13:31 -0800 Subject: [PATCH] Remove unused local in Inliner::Analyzer() --- src/script_opt/Inline.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/script_opt/Inline.cc b/src/script_opt/Inline.cc index 76e63ce6d3..942eefe8b1 100644 --- a/src/script_opt/Inline.cc +++ b/src/script_opt/Inline.cc @@ -108,9 +108,6 @@ void Inliner::Analyze() } } - // Functions that are candidates for inlining. - std::unordered_set candidates; - for ( auto& f : funcs ) // Candidates are non-event, non-hook, non-recursive // functions ... that don't use lambdas or when's,