mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-12 13:48:45 +00:00
[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:
parent
4e235f9788
commit
dc229acb5c
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user