Skip to content

Commit ba5f9eb

Browse files
committed
fixup! clang-format
1 parent 62811ae commit ba5f9eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

llvm/lib/Analysis/ValueTracking.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,7 @@ KnownBits llvm::computeKnownBits(const Value *V, const APInt &DemandedElts,
186186
SimplifyQuery(DL, DT, AC, safeCxtI(V, CxtI), UseInstrInfo));
187187
}
188188

189-
static bool haveNoCommonBitsSetSpecialCases(const Value *LHS,
190-
const Value *RHS,
189+
static bool haveNoCommonBitsSetSpecialCases(const Value *LHS, const Value *RHS,
191190
const SimplifyQuery &SQ) {
192191
// Look for an inverted mask: (X & ~M) op (Y & M).
193192
{
@@ -206,7 +205,8 @@ static bool haveNoCommonBitsSetSpecialCases(const Value *LHS,
206205
// X op ((X & Y) ^ Y) -- this is the canonical form of the previous pattern
207206
// for constant Y.
208207
Value *Y;
209-
if (match(RHS, m_c_Xor(m_c_And(m_Specific(LHS), m_Value(Y)), m_Deferred(Y))) &&
208+
if (match(RHS,
209+
m_c_Xor(m_c_And(m_Specific(LHS), m_Value(Y)), m_Deferred(Y))) &&
210210
isGuaranteedNotToBeUndef(LHS, SQ.AC, SQ.CxtI, SQ.DT) &&
211211
isGuaranteedNotToBeUndef(Y, SQ.AC, SQ.CxtI, SQ.DT))
212212
return true;

0 commit comments

Comments
 (0)