Fix typo, sentence fragment.

llvm-svn: 62512
This commit is contained in:
Nick Lewycky 2009-01-19 17:42:33 +00:00
parent faad4168f9
commit 030c450fdc
1 changed files with 2 additions and 2 deletions

View File

@ -1133,7 +1133,7 @@ APInt APInt::lshr(uint32_t shiftAmt) const {
/// Left-shift this APInt by shiftAmt.
/// @brief Left-shift function.
APInt APInt::shl(const APInt &shiftAmt) const {
// It's undefined behavior in C to shift by BitWidth or greater, but
// It's undefined behavior in C to shift by BitWidth or greater.
return shl((uint32_t)shiftAmt.getLimitedValue(BitWidth));
}