forked from OSchip/llvm-project
use simplified API for making fp constants.
llvm-svn: 50623
This commit is contained in:
parent
304f209a07
commit
1e151816b2
|
@ -193,14 +193,14 @@ RValue CodeGenFunction::EmitBuiltinExpr(unsigned BuiltinID, const CallExpr *E) {
|
|||
}
|
||||
case Builtin::BI__builtin_inff: {
|
||||
APFloat f(APFloat::IEEEsingle, APFloat::fcInfinity, false);
|
||||
return RValue::get(ConstantFP::get(llvm::Type::FloatTy, f));
|
||||
return RValue::get(ConstantFP::get(f));
|
||||
}
|
||||
case Builtin::BI__builtin_huge_val:
|
||||
case Builtin::BI__builtin_inf:
|
||||
// FIXME: mapping long double onto double.
|
||||
case Builtin::BI__builtin_infl: {
|
||||
APFloat f(APFloat::IEEEdouble, APFloat::fcInfinity, false);
|
||||
return RValue::get(ConstantFP::get(llvm::Type::DoubleTy, f));
|
||||
return RValue::get(ConstantFP::get(f));
|
||||
}
|
||||
case Builtin::BI__builtin_isgreater:
|
||||
case Builtin::BI__builtin_isgreaterequal:
|
||||
|
|
|
@ -301,14 +301,12 @@ ComplexPairTy ComplexExprEmitter::VisitPrePostIncDec(const UnaryOperator *E,
|
|||
else if (InVal.first->getType() == llvm::Type::FloatTy)
|
||||
// FIXME: Handle long double.
|
||||
NextVal =
|
||||
llvm::ConstantFP::get(InVal.first->getType(),
|
||||
llvm::APFloat(static_cast<float>(AmountVal)));
|
||||
llvm::ConstantFP::get(llvm::APFloat(static_cast<float>(AmountVal)));
|
||||
else {
|
||||
// FIXME: Handle long double.
|
||||
assert(InVal.first->getType() == llvm::Type::DoubleTy);
|
||||
NextVal =
|
||||
llvm::ConstantFP::get(InVal.first->getType(),
|
||||
llvm::APFloat(static_cast<double>(AmountVal)));
|
||||
llvm::ConstantFP::get(llvm::APFloat(static_cast<double>(AmountVal)));
|
||||
}
|
||||
|
||||
// Add the inc/dec to the real part.
|
||||
|
|
Loading…
Reference in New Issue