fix a comment bug Reid noticed
authorChris Lattner <sabre@nondot.org>
Tue, 10 Apr 2007 16:33:06 +0000 (16:33 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 10 Apr 2007 16:33:06 +0000 (16:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35864 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/APInt.h

index c514d24bcf13484d45de9f8669895d12487c278f..d9470ee3c80a4d52de4a179141b34371b504afea 100644 (file)
@@ -281,8 +281,9 @@ public:
     return *this != 0;
   }
 
-  /// getLimitedValue - Return this value, or return all ones if it is too large
-  /// to return.
+  /// getLimitedValue - If this value is smaller than the specified limit,
+  /// return it, otherwise return the limit value.  This causes the value
+  /// to saturate to the limit.
   uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
     return (getActiveBits() > 64 || getZExtValue() > Limit) ?
       Limit :  getZExtValue();