Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1603 Value *SelVal0, *SelVal1; // We do not care which one is from where. in tryToReuseConstantFromSelectInComparison() local
1604 match(&Sel, m_Select(m_Value(), m_Value(SelVal0), m_Value(SelVal1))); in tryToReuseConstantFromSelectInComparison()
1607 if (!match(SelVal0, m_AnyIntegralConstant()) && in tryToReuseConstantFromSelectInComparison()
1612 auto MatchesSelectValue = [SelVal0, SelVal1](Constant *C) { in tryToReuseConstantFromSelectInComparison()
1613 return C->isElementWiseEqual(SelVal0) || C->isElementWiseEqual(SelVal1); in tryToReuseConstantFromSelectInComparison()