Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:CFP

1133 static Constant *FitsInFPType(ConstantFP *CFP, const fltSemantics &Sem) {
1135 APFloat F = CFP->getValueAPF();
1138 return ConstantFP::get(CFP->getContext(), F);
1152 if (ConstantFP *CFP = dyn_cast<ConstantFP>(V)) {
1153 if (CFP->getType() == Type::getPPC_FP128Ty(V->getContext()))
1156 if (Value *V = FitsInFPType(CFP, APFloat::IEEEhalf))
1159 if (Value *V = FitsInFPType(CFP, APFloat::IEEEsingle))
1161 if (CFP->getType()->isDoubleTy())
1163 if (Value *V = FitsInFPType(CFP, APFloat::IEEEdouble))