[llvm] [MachineOutliner] Leaf Descendants (PR #90275)

Kyungwoo Lee via llvm-commits llvm-commits at lists.llvm.org
Fri Jun 14 22:37:44 PDT 2024


================
@@ -140,4 +140,138 @@ TEST(SuffixTreeTest, TestExclusion) {
   }
 }
 
+// Tests that the SuffixTree is able to find the following substrings:
+// {1, 1} at indices 0, 1, 2, 3, and 4;
+// {1, 1, 1} at indices 0, 1, 2, and 3;
+// {1, 1, 1, 1}  at indices 0, 1, and 2; and
+// {1, 1, 1, 1, 1} at indices 0 and 1.
+//
+// This is a FIX to the Test TestSingleCharacterRepeat
----------------
kyulee-com wrote:

This is the fix for TestSingleCharacterRepeat.

Can you also insert these 3 tests right after TestSingleCharacterRepeat so that the related tests are placed back-to-back?

https://github.com/llvm/llvm-project/pull/90275


More information about the llvm-commits mailing list