Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp557 Value *BinOp0 = BinOp->getOperand(0); in narrowBinOp() local
567 if (match(BinOp0, m_Constant(C))) { in narrowBinOp()
576 Value *TruncX = Builder.CreateTrunc(BinOp0, DestTy); in narrowBinOp()
580 if (match(BinOp0, m_ZExtOrSExt(m_Value(X))) && X->getType() == DestTy) { in narrowBinOp()
587 Value *NarrowOp0 = Builder.CreateTrunc(BinOp0, DestTy); in narrowBinOp()
597 if (match(BinOp0, m_Trunc(m_Value(A))) && match(BinOp1, m_Constant(C))) { in narrowBinOp()