From: Fangrui Song Date: Sat, 6 Aug 2022 23:48:23 +0000 (-0700) Subject: Revert "[SampleProfileInference] Work around odr-use of const non-inline static data... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5deb678289df4a11d5c0786d702ad2730cd7e391;p=platform%2Fupstream%2Fllvm.git Revert "[SampleProfileInference] Work around odr-use of const non-inline static data member to fix -O0 builds after D120508" This reverts commit 48c74bb2e2a72830f1068823bfc2f6fd4b53d427. With C++17 the workaround is no longer needed. --- diff --git a/llvm/lib/Transforms/Utils/SampleProfileInference.cpp b/llvm/lib/Transforms/Utils/SampleProfileInference.cpp index 5e92b98..d9005be 100644 --- a/llvm/lib/Transforms/Utils/SampleProfileInference.cpp +++ b/llvm/lib/Transforms/Utils/SampleProfileInference.cpp @@ -740,7 +740,7 @@ private: /// parts to a multiple of 1 / BaseDistance. int64_t jumpDistance(FlowJump *Jump) const { uint64_t BaseDistance = - std::max(static_cast(MinCostMaxFlow::MinBaseDistance), + std::max(MinCostMaxFlow::MinBaseDistance, std::min(Func.Blocks[Func.Entry].Flow, MinCostMaxFlow::AuxCostUnlikely / NumBlocks())); if (Jump->IsUnlikely)