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.cpp1590 BinaryOperator::BinaryOps IntOpc; in foldFBinOpOfIntCastsFromSign() local
1601 IntOpc = Instruction::Add; in foldFBinOpOfIntCastsFromSign()
1605 IntOpc = Instruction::Sub; in foldFBinOpOfIntCastsFromSign()
1609 IntOpc = Instruction::Mul; in foldFBinOpOfIntCastsFromSign()
1620 if (IntOpc == Instruction::Sub) in foldFBinOpOfIntCastsFromSign()
1628 !willNotOverflow(IntOpc, IntOps[0], IntOps[1], BO, OutputSigned)) in foldFBinOpOfIntCastsFromSign()
1631 Value *IntBinOp = Builder.CreateBinOp(IntOpc, IntOps[0], IntOps[1]); in foldFBinOpOfIntCastsFromSign()