forked from OSchip/llvm-project
Use getArgOperand instead of getOperand on a call.
llvm-svn: 146384
This commit is contained in:
parent
843044b75b
commit
09b272bb2b
|
|
@ -3134,7 +3134,7 @@ void ObjCARCOpt::OptimizeWeakCalls(Function &F) {
|
|||
UE = Alloca->use_end(); UI != UE; ) {
|
||||
CallInst *UserInst = cast<CallInst>(*UI++);
|
||||
if (!UserInst->use_empty())
|
||||
UserInst->replaceAllUsesWith(UserInst->getOperand(1));
|
||||
UserInst->replaceAllUsesWith(UserInst->getArgOperand(0));
|
||||
UserInst->eraseFromParent();
|
||||
}
|
||||
Alloca->eraseFromParent();
|
||||
|
|
|
|||
Loading…
Reference in New Issue