File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments