Fix typos in SDBMTest.cpp

PiperOrigin-RevId: 268443146
This commit is contained in:
Alex Zinenko 2019-09-11 06:11:03 -07:00 committed by A. Unique TensorFlower
parent bc9b52f2ed
commit 9037f28cb4
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ TEST(SDBMOperators, Stripe) {
}
TEST(SDBM, RoundTripEqs) {
// Build and SDBM defined by
// Build an SDBM defined by
//
// d0 = s0 # 3 # 5
// s0 # 3 # 5 - d1 + 42 = 0
@ -138,7 +138,7 @@ TEST(SDBM, RoundTripEqs) {
sdbm2.getSDBMExpressions(dialect(), ineqs2, eqs2);
ASSERT_EQ(eqs.size(), eqs2.size());
// Convert that the sets of equalities are equal, their order is not relevant.
// Check that the sets of equalities are equal, their order is not relevant.
llvm::DenseSet<SDBMExpr> eqSet, eq2Set;
eqSet.insert(eqs.begin(), eqs.end());
eq2Set.insert(eqs2.begin(), eqs2.end());