[NFC][mlir][affine] Typo in Affine Analysis test

Reviewed By: Groverkss

Differential Revision: https://reviews.llvm.org/D132201
This commit is contained in:
Kai Sasaki 2022-08-21 20:24:44 +05:30 committed by Uday Bondhugula
parent 6ebc2a189d
commit 3bdc0f36a5
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ using namespace mlir;
using namespace presburger;
/// Construct a IntegerPolyhedron from a set of inequality, equality, and
/// division onstraints.
/// division constraints.
static IntegerPolyhedron makeFACFromConstraints(
unsigned dims, unsigned syms, ArrayRef<SmallVector<int64_t, 4>> ineqs,
ArrayRef<SmallVector<int64_t, 4>> eqs = {},
@ -56,7 +56,7 @@ TEST(ParseFACTest, InvalidInputTest) {
fac = parseIntegerSetToFAC("(x)[] : (y == 0)", &context, false);
EXPECT_TRUE(failed(fac))
<< "should not accept strings that contain unkown identifiers";
<< "should not accept strings that contain unknown identifiers";
fac = parseIntegerSetToFAC("(x, x) : (2 * x >= 0)", &context, false);
EXPECT_TRUE(failed(fac))