diff options
author | Ashley Nelson <nashley@google.com> | 2023-11-15 20:58:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 20:58:02 -0800 |
commit | 2412c323cb6403033afb67d6b32c2e36e72d4ce7 (patch) | |
tree | 91a97728bf083ba81c1009c352ce5c67a6e1ad5e /src/passes/hash-stringify-walker.cpp | |
parent | 1fcb57e5c424cfb42f9c0e61e9b7b5485cb03896 (diff) | |
download | binaryen-2412c323cb6403033afb67d6b32c2e36e72d4ce7.tar.gz binaryen-2412c323cb6403033afb67d6b32c2e36e72d4ce7.tar.bz2 binaryen-2412c323cb6403033afb67d6b32c2e36e72d4ce7.zip |
[Outlining] Adding more tests (#6117)
Checking a couple of testing TODOs off and adding more tests of the outlining pass for outlining:
- a sequence at the beginning of an existing function
- a sequence that is outlined into a function that takes no arguments
- multiple sequences from the same source function into different outlined functions
Diffstat (limited to 'src/passes/hash-stringify-walker.cpp')
-rw-r--r-- | src/passes/hash-stringify-walker.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/passes/hash-stringify-walker.cpp b/src/passes/hash-stringify-walker.cpp index 5afd50ef4..c9173c6a5 100644 --- a/src/passes/hash-stringify-walker.cpp +++ b/src/passes/hash-stringify-walker.cpp @@ -86,11 +86,9 @@ std::vector<SuffixTree::RepeatedSubstring> StringifyProcessor::repeatSubstrings(std::vector<uint32_t>& hashString) { SuffixTree st(hashString); std::vector<SuffixTree::RepeatedSubstring> substrings(st.begin(), st.end()); - for (auto substring : substrings) { + for (auto& substring : substrings) { // Sort by increasing start index to ensure determinism. - std::sort(substring.StartIndices.begin(), - substring.StartIndices.end(), - [](uint32_t a, uint32_t b) { return a < b; }); + std::sort(substring.StartIndices.begin(), substring.StartIndices.end()); } // Substrings are sorted so that the longest substring that repeats the most // times is ordered first. This is done so that we can assume the most |