Rename and correct the method "greaterOrEqual".

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35502 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Zhou Sheng 2007-03-30 05:10:59 +00:00
parent b422d2d9e5
commit 0642f75836

View File

@ -179,8 +179,8 @@ public:
/// value. /// value.
/// @returns true iff this constant is greater or equal to the given number. /// @returns true iff this constant is greater or equal to the given number.
/// @brief Determine if the value is greater or equal to the given number. /// @brief Determine if the value is greater or equal to the given number.
bool greaterOrEqual(uint64_t Num) { bool uge(uint64_t Num) {
return Val.getActiveBits() > 64 || Val.getZExtValue() > Num; return Val.getActiveBits() > 64 || Val.getZExtValue() >= Num;
} }
/// @returns the 64-bit value of this constant if its active bits number is /// @returns the 64-bit value of this constant if its active bits number is