Minor-fix: remove duplicate definition of SPT optimization timer

Summary:

(cherry picked from FBD28111560)
This commit is contained in:
Laith Sakka 2019-05-22 15:03:42 -07:00 committed by Maksim Panchenko
parent e5b1d9cd8c
commit c8038da36e
1 changed files with 1 additions and 5 deletions

View File

@ -152,11 +152,7 @@ class FrameAccessAnalysis {
public:
FrameAccessAnalysis(const BinaryContext &BC, BinaryFunction &BF)
: SPT(BC, BF), BC(BC), BF(BF) {
{
NamedRegionTimer T1("SPT", "Stack Pointer Tracking", "Dataflow",
"Dataflow", opts::TimeOpts);
SPT.run();
}
SPT.run();
}
void enterNewBB() { Prev = nullptr; }