Skip to content

Commit 35eaeb2

Browse files
committed
Formating
1 parent 3b55bb9 commit 35eaeb2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,8 @@ static Value *canonicalizeClampLike(SelectInst &Sel0, ICmpInst &Cmp0,
15891589
Value *ReplacementLow, *ReplacementHigh;
15901590
bool FoldSExtICmp;
15911591
auto MatchSExtICmp = [](Value *PossibleSextIcmp, Value *&Cmp1) -> bool {
1592-
return match(PossibleSextIcmp, m_SExt(m_Value(Cmp1, m_ICmp(m_Value(), m_Value()))));
1592+
return match(PossibleSextIcmp,
1593+
m_SExt(m_Value(Cmp1, m_ICmp(m_Value(), m_Value()))));
15931594
};
15941595
if (!((FoldSExtICmp = MatchSExtICmp(Sel1, Cmp1)) ||
15951596
match(Sel1, m_Select(m_Value(Cmp1), m_Value(ReplacementLow),

0 commit comments

Comments
 (0)