mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-13 19:40:26 +00:00
remove unnecessary variable; NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258444 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1264f61388
commit
d288063a88
@ -1218,7 +1218,6 @@ Value *LibCallSimplifier::optimizePow(CallInst *CI, IRBuilder<> &B) {
|
|||||||
|
|
||||||
Value *LibCallSimplifier::optimizeExp2(CallInst *CI, IRBuilder<> &B) {
|
Value *LibCallSimplifier::optimizeExp2(CallInst *CI, IRBuilder<> &B) {
|
||||||
Function *Callee = CI->getCalledFunction();
|
Function *Callee = CI->getCalledFunction();
|
||||||
Function *Caller = CI->getParent()->getParent();
|
|
||||||
Value *Ret = nullptr;
|
Value *Ret = nullptr;
|
||||||
StringRef Name = Callee->getName();
|
StringRef Name = Callee->getName();
|
||||||
if (UnsafeFPShrink && Name == "exp2" && hasFloatVersion(Name))
|
if (UnsafeFPShrink && Name == "exp2" && hasFloatVersion(Name))
|
||||||
@ -1255,7 +1254,7 @@ Value *LibCallSimplifier::optimizeExp2(CallInst *CI, IRBuilder<> &B) {
|
|||||||
if (!Op->getType()->isFloatTy())
|
if (!Op->getType()->isFloatTy())
|
||||||
One = ConstantExpr::getFPExtend(One, Op->getType());
|
One = ConstantExpr::getFPExtend(One, Op->getType());
|
||||||
|
|
||||||
Module *M = Caller->getParent();
|
Module *M = CI->getModule();
|
||||||
Value *Callee =
|
Value *Callee =
|
||||||
M->getOrInsertFunction(TLI->getName(LdExp), Op->getType(),
|
M->getOrInsertFunction(TLI->getName(LdExp), Op->getType(),
|
||||||
Op->getType(), B.getInt32Ty(), nullptr);
|
Op->getType(), B.getInt32Ty(), nullptr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user