Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:YC

1206 YC = nullptr;
1207 if (match(Op0, m_Trunc(m_And(m_Value(X), m_ConstantInt(YC))))) {
1208 // Change: and (trunc (and X, YC) to T), C2
1209 // into : and (trunc X to T), trunc(YC) & C2
1213 Constant *C3 = ConstantExpr::getTrunc(YC, I.getType());