[APInt] Fix copy/paste mistake in comment for isNullValue. NFC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@301838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper 2017-05-01 21:16:44 +00:00
parent 4e235f9788
commit dc229acb5c

View File

@ -377,9 +377,10 @@ public:
return countPopulationSlowCase() == BitWidth;
}
/// \brief Determine if all bits are set
/// \brief Determine if all bits are clear
///
/// This checks to see if the value has all bits of the APInt are set or not.
/// This checks to see if the value has all bits of the APInt are clear or
/// not.
bool isNullValue() const { return !*this; }
/// \brief Determine if this is the largest unsigned value.