Skip to content

Commit fa89f88

Browse files
committed
coding style....
1 parent 914dd1f commit fa89f88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,8 @@ Instruction *InstCombinerImpl::foldNextMultiply(ICmpInst &Cmp) {
13601360
if (!match(Neg, m_Sub(m_Zero(), m_Value(Value))))
13611361
return nullptr;
13621362

1363-
// mask = add %val, -1. No commutative here, since it's canonical representation for sub %val, -1
1363+
// mask = add %val, -1. No commutative here, since it's canonical
1364+
// representation for sub %val, -1
13641365
if (!match(Mask, m_Add(m_Value(Value), m_AllOnes()))) {
13651366
if (match(Num, m_Add(m_Value(Value), m_AllOnes()))) {
13661367
std::swap(Mask, Num);

0 commit comments

Comments
 (0)