[llvm] [CodeLayout] Faster basic block reordering, ext-tsp (PR #68617)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 17 18:44:07 PDT 2023
================
@@ -725,6 +734,7 @@ class ExtTSPImpl {
return std::make_tuple(A1->Id, B1->Id) < std::make_tuple(A2->Id, B2->Id);
};
+ double PrevScore = 1e9;
----------------
spupyrev wrote:
removed the variable, as it seems to confuse people while the benefit is modest
https://github.com/llvm/llvm-project/pull/68617
More information about the llvm-commits
mailing list