Skip to content

Commit 89e68b2

Browse files
run clang format
1 parent c179dfa commit 89e68b2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4010,8 +4010,9 @@ static Value *foldSelectICmpIntoMaxMin(SelectInst &SI,
40104010
// Note: OneUse check for `Cmp` is necessary because it makes sure that other
40114011
// InstCombine folds don't undo this transformation and cause an infinite
40124012
// loop. Furthermore, it could also increase the operation count.
4013-
if (match(&SI, m_OneUse(m_Select(m_OneUse(m_FCmp(Pred, m_Value(X), m_Value(Y))),
4014-
m_Value(TVal), m_Value(FVal)))))
4013+
if (match(&SI,
4014+
m_OneUse(m_Select(m_OneUse(m_FCmp(Pred, m_Value(X), m_Value(Y))),
4015+
m_Value(TVal), m_Value(FVal)))))
40154016
return TryFoldIntoMaxMinIntrinsic(Pred, X, Y, TVal, FVal);
40164017

40174018
return nullptr;

0 commit comments

Comments
 (0)