Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp1542 BinaryOperator::BinaryOps IntOpc; in foldFBinOpOfIntCastsFromSign() local
1553 IntOpc = Instruction::Add; in foldFBinOpOfIntCastsFromSign()
1557 IntOpc = Instruction::Sub; in foldFBinOpOfIntCastsFromSign()
1561 IntOpc = Instruction::Mul; in foldFBinOpOfIntCastsFromSign()
1572 if (IntOpc == Instruction::Sub) in foldFBinOpOfIntCastsFromSign()
1580 !willNotOverflow(IntOpc, IntOps[0], IntOps[1], BO, OutputSigned)) in foldFBinOpOfIntCastsFromSign()
1583 Value *IntBinOp = Builder.CreateBinOp(IntOpc, IntOps[0], IntOps[1]); in foldFBinOpOfIntCastsFromSign()