Skip to content

Commit a821fe6

Browse files
committed
Apply clang-format suggestions.
1 parent 1713edf commit a821fe6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/unittests/IR/PatternMatch.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,15 +1159,15 @@ TEST_F(PatternMatchTest, FloatingPointMax) {
11591159

11601160
// [OU]LE with inverted select.
11611161
EXPECT_TRUE(m_OrdOrUnordFMax(m_Value(MatchL), m_Value(MatchR))
1162-
.match(IRB.CreateSelect(IRB.CreateFCmpOLE(L, R), R, L)));
1162+
.match(IRB.CreateSelect(IRB.CreateFCmpOLE(L, R), R, L)));
11631163
EXPECT_TRUE(m_OrdOrUnordFMax(m_Value(MatchL), m_Value(MatchR))
11641164
.match(IRB.CreateSelect(IRB.CreateFCmpULE(L, R), R, L)));
11651165
EXPECT_EQ(L, MatchL);
11661166
EXPECT_EQ(R, MatchR);
11671167

11681168
// [OUT]LT with inverted select.
11691169
EXPECT_TRUE(m_OrdOrUnordFMax(m_Value(MatchL), m_Value(MatchR))
1170-
.match(IRB.CreateSelect(IRB.CreateFCmpOLT(L, R), R, L)));
1170+
.match(IRB.CreateSelect(IRB.CreateFCmpOLT(L, R), R, L)));
11711171
EXPECT_TRUE(m_OrdOrUnordFMax(m_Value(MatchL), m_Value(MatchR))
11721172
.match(IRB.CreateSelect(IRB.CreateFCmpULT(L, R), R, L)));
11731173
EXPECT_EQ(L, MatchL);

0 commit comments

Comments
 (0)