From: Reid Spencer Date: Sun, 25 Feb 2007 01:08:58 +0000 (+0000) Subject: Whoops, last word with bits in large shift left wasn't correct. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=438d71eea40b4c69668be891a5d9c5e72c5d8af3;p=oota-llvm.git Whoops, last word with bits in large shift left wasn't correct. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34565 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/APInt.cpp b/lib/Support/APInt.cpp index 2e90502e6ce..3725667b8fe 100644 --- a/lib/Support/APInt.cpp +++ b/lib/Support/APInt.cpp @@ -994,7 +994,7 @@ APInt APInt::shl(uint32_t shiftAmt) const { for (; i > offset; --i) val[i] = pVal[i-offset] << wordShift | pVal[i-offset-1] >> (APINT_BITS_PER_WORD - wordShift); - val[offset] = pVal[offset-1] << wordShift; + val[offset] = pVal[0] << wordShift; for (i = 0; i < offset; ++i) val[i] = 0; val[getNumWords()-1] &= ~uint64_t(0ULL) >> (APINT_BITS_PER_WORD - BitWidth);