mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
avoid variable shadowing; NFC
llvm-svn: 258445
This commit is contained in:
parent
4a76c00379
commit
7c9dc49b45
@ -1255,10 +1255,10 @@ Value *LibCallSimplifier::optimizeExp2(CallInst *CI, IRBuilder<> &B) {
|
||||
One = ConstantExpr::getFPExtend(One, Op->getType());
|
||||
|
||||
Module *M = CI->getModule();
|
||||
Value *Callee =
|
||||
Value *NewCallee =
|
||||
M->getOrInsertFunction(TLI->getName(LdExp), Op->getType(),
|
||||
Op->getType(), B.getInt32Ty(), nullptr);
|
||||
CallInst *CI = B.CreateCall(Callee, {One, LdExpArg});
|
||||
CallInst *CI = B.CreateCall(NewCallee, {One, LdExpArg});
|
||||
if (const Function *F = dyn_cast<Function>(Callee->stripPointerCasts()))
|
||||
CI->setCallingConv(F->getCallingConv());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user