forked from OSchip/llvm-project
[InstCombine] fix typo in comment; NFC
This commit is contained in:
parent
f65f566aeb
commit
46d6f76be3
|
@ -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) &&
|
||||
|
|
Loading…
Reference in New Issue