diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-03-21 22:22:19 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-03-21 22:22:19 +0000 |
commit | 3a3aacfe10cc6a96de7357e07dcf8b3f0e5f63bb (patch) | |
tree | 773738addabcc3b7e0198bb4dfd2446feb86a669 | |
parent | fa4bce2b76c8557cfd0794beef86efe5fb0087fa (diff) |
Fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35246 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/ADT/APInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index 5f4d6741c5..9e7f86612a 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -633,7 +633,7 @@ public: !isNegative() && countPopulation() == BitWidth - 1; } - /// This checks to see if the value of this APInt is the minimum signed + /// This checks to see if the value of this APInt is the minimum unsigned /// value for the APInt's bit width. /// @brief Determine if this is the smallest unsigned value. bool isMinValue() const { |