Searched refs:matchInner (Results 1 – 1 of 1) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 1747 auto matchInner = m_c_BinOp(InnerOpc, m_Specific(X), m_Specific(Y)); in foldSelectICmpEq() local 1749 return match(CmpRHS, m_Zero()) && match(FalseVal, matchInner); in foldSelectICmpEq() 1752 return match(FalseVal, m_c_BinOp(OuterOpc, m_NotForbidPoison(matchInner), in foldSelectICmpEq() 1755 return match(FalseVal, m_c_BinOp(OuterOpc, matchInner, in foldSelectICmpEq() 1759 m_c_BinOp(OuterOpc, matchInner, m_Specific(CmpRHS))); in foldSelectICmpEq()
|