[NFC][InstCombine] Fix typo

This commit is contained in:
Jun Ma 2021-07-27 11:31:32 +08:00
parent 25986a21ef
commit 958dddf7df
1 changed files with 1 additions and 1 deletions

View File

@ -2011,7 +2011,7 @@ Instruction *InstCombinerImpl::visitCallInst(CallInst &CI) {
if (Arg != Vect &&
cast<Instruction>(Arg)->getOpcode() == Instruction::SExt)
Res = Builder.CreateNeg(Res);
return replaceInstUsesWith(CI, Res);;
return replaceInstUsesWith(CI, Res);
}
}
}