Fix and clarify some comments.
authorNeil Booth <neil@daikokuya.co.uk>
Sat, 6 Oct 2007 00:43:45 +0000 (00:43 +0000)
committerNeil Booth <neil@daikokuya.co.uk>
Sat, 6 Oct 2007 00:43:45 +0000 (00:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42670 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/APInt.cpp

index e7b7c1f4bb62187787add2a0275fcd9ce6a1f90e..aa6cfa713e81026d5bce968a06824f2112c4f408 100644 (file)
@@ -2029,22 +2029,22 @@ namespace {
     return ~(integerPart) 0 >> (integerPartWidth - bits);
   }
 
-  /* Returns the value of the lower nibble of PART.  */
+  /* Returns the value of the lower half of PART.  */
   inline integerPart
   lowHalf(integerPart part)
   {
     return part & lowBitMask(integerPartWidth / 2);
   }
 
-  /* Returns the value of the upper nibble of PART.  */
+  /* Returns the value of the upper half of PART.  */
   inline integerPart
   highHalf(integerPart part)
   {
     return part >> (integerPartWidth / 2);
   }
 
-  /* Returns the bit number of the most significant bit of a part.  If
-     the input number has no bits set -1U is returned.  */
+  /* Returns the bit number of the most significant set bit of a part.
+     If the input number has no bits set -1U is returned.  */
   unsigned int
   partMSB(integerPart value)
   {
@@ -2068,8 +2068,8 @@ namespace {
     return msb;
   }
 
-  /* Returns the bit number of the least significant bit of a part.
-     If the input number has no bits set -1U is returned.  */
+  /* Returns the bit number of the least significant set bit of a
+     part.  If the input number has no bits set -1U is returned.  */
   unsigned int
   partLSB(integerPart value)
   {
@@ -2144,8 +2144,8 @@ APInt::tcSetBit(integerPart *parts, unsigned int bit)
   parts[bit / integerPartWidth] |= (integerPart) 1 << (bit % integerPartWidth);
 }
 
-/* Returns the bit number of the least significant bit of a number.
-   If the input number has no bits set -1U is returned.  */
+/* Returns the bit number of the least significant set bit of a
+   number.  If the input number has no bits set -1U is returned.  */
 unsigned int
 APInt::tcLSB(const integerPart *parts, unsigned int n)
 {
@@ -2162,8 +2162,8 @@ APInt::tcLSB(const integerPart *parts, unsigned int n)
   return -1U;
 }
 
-/* Returns the bit number of the most significant bit of a number.  If
-   the input number has no bits set -1U is returned.  */
+/* Returns the bit number of the most significant set bit of a number.
+   If the input number has no bits set -1U is returned.  */
 unsigned int
 APInt::tcMSB(const integerPart *parts, unsigned int n)
 {
@@ -2240,8 +2240,8 @@ APInt::tcNegate(integerPart *dst, unsigned int parts)
   tcIncrement(dst, parts);
 }
 
-/*  DST += SRC * MULTIPLIER + PART   if add is true
-    DST  = SRC * MULTIPLIER + PART   if add is false
+/*  DST += SRC * MULTIPLIER + CARRY   if add is true
+    DST  = SRC * MULTIPLIER + CARRY   if add is false
 
     Requires 0 <= DSTPARTS <= SRCPARTS + 1.  If DST overlaps SRC
     they must start at the same point, i.e. DST == SRC.