diff options
author | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-09-02 14:03:11 +0000 |
---|---|---|
committer | Andreas Neustifter <astifter-llvm@gmx.at> | 2009-09-02 14:03:11 +0000 |
commit | ae866b0c669156f7f846ebc565ad3beaeb1d891c (patch) | |
tree | 595050734364f475e4e7083b4a797cd0f1e8eaa0 /llvm/lib/Transforms/Instrumentation | |
parent | 964fa2bdaccfec4e8c288ad39dd2d88eaafc58c1 (diff) | |
download | bcm5719-llvm-ae866b0c669156f7f846ebc565ad3beaeb1d891c.tar.gz bcm5719-llvm-ae866b0c669156f7f846ebc565ad3beaeb1d891c.zip |
Sort edges in MaximumSpanningTree more stable in case of equal weight.
(See http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20090824/085890.html)
llvm-svn: 80789
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.cpp b/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.cpp index 80f1a15d632..ffd100e0533 100644 --- a/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.cpp +++ b/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.cpp @@ -30,7 +30,11 @@ namespace { const ProfileInfo::EdgeWeight Y) const { if (X.second > Y.second) return true; if (X.second < Y.second) return false; -#ifndef NDEBUG + + // It would be enough to just compare the weights of the edges and be + // done. With edges of the same weight this may lead to a different MST + // each time the MST is created. To have more stable sorting (and thus + // more stable MSTs) furhter sort the edges. if (X.first.first != 0 && Y.first.first == 0) return true; if (X.first.first == 0 && Y.first.first != 0) return false; if (X.first.first == 0 && Y.first.first == 0) return false; @@ -44,7 +48,7 @@ namespace { if (X.first.second->size() > Y.first.second->size()) return true; if (X.first.second->size() < Y.first.second->size()) return false; -#endif + return false; } }; |