Home | History | Annotate | Download | only in Scalar

Lines Matching refs:NewBO

627   BinaryOperator *NewBO = nullptr;
629 NewBO = BinaryOperator::Create(BO->getOpcode(), NextInChain, TheOther,
632 NewBO = BinaryOperator::Create(BO->getOpcode(), TheOther, NextInChain,
635 return UserChain[ChainIndex] = NewBO;
680 BinaryOperator *NewBO;
682 NewBO = BinaryOperator::Create(NewOp, NextInChain, TheOther, "", IP);
684 NewBO = BinaryOperator::Create(NewOp, TheOther, NextInChain, "", IP);
686 NewBO->takeName(BO);
687 return NewBO;