1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[NFC][InstCombine] Fix typo

This commit is contained in:
Jun Ma 2021-07-27 11:31:32 +08:00
parent 52c4e0dd10
commit ce23772b94

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);
}
}
}