[InstCombine] fix typo in comment; NFC

This commit is contained in:
Sanjay Patel 2020-05-08 15:42:54 -04:00
parent f65f566aeb
commit 46d6f76be3
1 changed files with 1 additions and 1 deletions

View File

@ -1736,7 +1736,7 @@ Instruction *InstCombiner::visitFPTrunc(FPTruncInst &FPT) {
}
/// Return true if the cast from integer to FP can be proven to be exact for all
/// possible inputs (the conversion does lose any precision).
/// possible inputs (the conversion does not lose any precision).
static bool isKnownExactCastIntToFP(CastInst &I) {
CastInst::CastOps Opcode = I.getOpcode();
assert((Opcode == CastInst::SIToFP || Opcode == CastInst::UIToFP) &&