summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-04-09 17:17:35 +0000
committerChris Lattner <sabre@nondot.org>2008-04-09 17:17:35 +0000
commit8bb9a4f28f62502b7d7a9a1b4e553406fcbac87d (patch)
tree9babe5c088c0c8aea228bab5e42ac8075735c1ad /lib/Transforms/IPO
parentd6d48c4e5b60aa4acc02c7a8700cb79949503e93 (diff)
downloadllvm-8bb9a4f28f62502b7d7a9a1b4e553406fcbac87d.tar.gz
llvm-8bb9a4f28f62502b7d7a9a1b4e553406fcbac87d.tar.bz2
llvm-8bb9a4f28f62502b7d7a9a1b4e553406fcbac87d.tar.xz
use the new ConstantFP::get method to make this work with
long double and simplify the code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49435 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO')
-rw-r--r--lib/Transforms/IPO/SimplifyLibCalls.cpp15
1 files changed, 4 insertions, 11 deletions
diff --git a/lib/Transforms/IPO/SimplifyLibCalls.cpp b/lib/Transforms/IPO/SimplifyLibCalls.cpp
index 24c56abde9..ce536a8a53 100644
--- a/lib/Transforms/IPO/SimplifyLibCalls.cpp
+++ b/lib/Transforms/IPO/SimplifyLibCalls.cpp
@@ -1149,10 +1149,6 @@ public:
/// @brief Perform the pow optimization.
virtual bool OptimizeCall(CallInst *CI, SimplifyLibCalls &SLC) {
- const Type *Ty = CI->getType();
- if (Ty != Type::FloatTy && Ty != Type::DoubleTy)
- return false; // FIXME long double not yet supported
-
Value *Op1 = CI->getOperand(1);
Value *Op2 = CI->getOperand(2);
if (ConstantFP *Op1C = dyn_cast<ConstantFP>(Op1)) {
@@ -1165,8 +1161,7 @@ public:
if (Op2C->getValueAPF().isZero()) {
// pow(x, 0.0) -> 1.0
- return ReplaceCallWith(CI, ConstantFP::get(Ty,
- Ty==Type::FloatTy ? APFloat(1.0f) : APFloat(1.0)));
+ return ReplaceCallWith(CI, ConstantFP::get(CI->getType(), 1.0));
} else if (Op2C->isExactlyValue(0.5)) {
// pow(x, 0.5) -> sqrt(x)
Value *Sqrt = CallInst::Create(SLC.get_sqrt(), Op1, "sqrt", CI);
@@ -1180,11 +1175,9 @@ public:
return ReplaceCallWith(CI, Sq);
} else if (Op2C->isExactlyValue(-1.0)) {
// pow(x, -1.0) -> 1.0/x
- Value *div_inst =
- BinaryOperator::createFDiv(ConstantFP::get(Ty,
- Ty==Type::FloatTy ? APFloat(1.0f) : APFloat(1.0)),
- Op1, CI->getName()+".pow", CI);
- return ReplaceCallWith(CI, div_inst);
+ Value *R = BinaryOperator::createFDiv(ConstantFP::get(CI->getType(), 1.0),
+ Op1, CI->getName()+".pow", CI);
+ return ReplaceCallWith(CI, R);
}
return false; // opt failed
}