Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp875 BinaryOperator *FBO; in FoldShiftByConstant() local
878 m_OneUse(m_BinOp(FBO))))) { in FoldShiftByConstant()
880 if (!isa<Constant>(TrueVal) && FBO->getOperand(0) == TrueVal && in FoldShiftByConstant()
881 match(FBO->getOperand(1), m_APInt(C)) && in FoldShiftByConstant()
882 canShiftBinOpWithConstantRHS(I, FBO)) { in FoldShiftByConstant()
884 Builder.CreateBinOp(I.getOpcode(), FBO->getOperand(1), C1); in FoldShiftByConstant()
887 Value *NewOp = Builder.CreateBinOp(FBO->getOpcode(), NewShift, NewRHS); in FoldShiftByConstant()