From c8b957fd4cb62eb10efb67d380126ab3abaaad46 Mon Sep 17 00:00:00 2001 From: Cynthia Shen Date: Tue, 22 Mar 2022 15:54:25 +0000 Subject: [PATCH] [MLIR][Presburger] Fix a comment in the unittests Reviewed By: arjunp Differential Revision: https://reviews.llvm.org/D122197 --- mlir/unittests/Analysis/Presburger/PresburgerSetTest.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mlir/unittests/Analysis/Presburger/PresburgerSetTest.cpp b/mlir/unittests/Analysis/Presburger/PresburgerSetTest.cpp index 7278a5e..c2077ee 100644 --- a/mlir/unittests/Analysis/Presburger/PresburgerSetTest.cpp +++ b/mlir/unittests/Analysis/Presburger/PresburgerSetTest.cpp @@ -442,9 +442,8 @@ TEST(SetTest, divisions) { EXPECT_TRUE(setA.subtract(setB).isEqual(setA)); } -/// Coalesce `set` and check that the `newSet` is equal to `set and that +/// Coalesce `set` and check that the `newSet` is equal to `set` and that /// `expectedNumPoly` matches the number of Poly in the coalesced set. -/// If one of the two void expectCoalesce(size_t expectedNumPoly, const PresburgerSet &set) { PresburgerSet newSet = set.coalesce(); EXPECT_TRUE(set.isEqual(newSet)); -- 2.7.4