Searched refs:WideC (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp847 Constant *WideC = ConstantExpr::getSExt(NarrowC, Ty); local
848 Constant *NewC = ConstantExpr::getAdd(WideC, Op1C);
854 Constant *WideC = ConstantExpr::getZExt(NarrowC, Ty); local
855 Constant *NewC = ConstantExpr::getAdd(WideC, Op1C);
H A DInstructionCombining.cpp1696 Constant *WideC; local
1697 if (!Op0->hasOneUse() || !match(Op1, m_Constant(WideC)))
1699 Constant *NarrowC = ConstantExpr::getTrunc(WideC, X->getType());
1700 if (ConstantExpr::getCast(CastOpc, NarrowC, BO.getType()) != WideC)

Completed in 76 milliseconds