[InstCombine] Update comment I missed in r366649. NFC

llvm-svn: 366658
This commit is contained in:
Craig Topper 2019-07-21 16:15:03 +00:00
parent 630be14ac6
commit e6cd20ba53
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ Instruction *InstCombiner::OptAndOp(BinaryOperator *Op,
} }
/// Emit a computation of: (V >= Lo && V < Hi) if Inside is true, otherwise /// Emit a computation of: (V >= Lo && V < Hi) if Inside is true, otherwise
/// (V < Lo || V >= Hi). This method expects that Lo <= Hi. IsSigned indicates /// (V < Lo || V >= Hi). This method expects that Lo < Hi. IsSigned indicates
/// whether to treat V, Lo, and Hi as signed or not. /// whether to treat V, Lo, and Hi as signed or not.
Value *InstCombiner::insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi, Value *InstCombiner::insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi,
bool isSigned, bool Inside) { bool isSigned, bool Inside) {