mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 22:24:07 +00:00
Allow constant folding of round function whenever feasible
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -1196,6 +1196,7 @@ bool llvm::canConstantFoldCallTo(const Function *F) {
|
||||
case Intrinsic::fma:
|
||||
case Intrinsic::fmuladd:
|
||||
case Intrinsic::copysign:
|
||||
case Intrinsic::round:
|
||||
case Intrinsic::sadd_with_overflow:
|
||||
case Intrinsic::uadd_with_overflow:
|
||||
case Intrinsic::ssub_with_overflow:
|
||||
@ -1345,6 +1346,12 @@ static Constant *ConstantFoldScalarCall(StringRef Name, unsigned IntrinsicID,
|
||||
if (!Ty->isHalfTy() && !Ty->isFloatTy() && !Ty->isDoubleTy())
|
||||
return 0;
|
||||
|
||||
if (IntrinsicID == Intrinsic::round) {
|
||||
APFloat V = Op->getValueAPF();
|
||||
V.roundToIntegral(APFloat::rmNearestTiesToAway);
|
||||
return ConstantFP::get(Ty->getContext(), V);
|
||||
}
|
||||
|
||||
/// We only fold functions with finite arguments. Folding NaN and inf is
|
||||
/// likely to be aborted with an exception anyway, and some host libms
|
||||
/// have known errors raising exceptions.
|
||||
|
Reference in New Issue
Block a user