Home
last modified time | relevance | path

Searched refs:AConst (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp3146 Constant *AConst, *BConst; in getSelectCondition() local
3147 if (match(A, m_Constant(AConst)) && match(B, m_Constant(BConst))) in getSelectCondition()
3148 if (AConst == ConstantExpr::getNot(BConst) && in getSelectCondition()
3181 if (match(A, (m_Xor(m_SExt(m_Value(Cond)), m_Constant(AConst)))) && in getSelectCondition()
3184 areInverseVectorBitmasks(AConst, BConst)) { in getSelectCondition()
3185 AConst = ConstantExpr::getTrunc(AConst, CmpInst::makeCmpResultType(Ty)); in getSelectCondition()
3186 return Builder.CreateXor(Cond, AConst); in getSelectCondition()