Add isStrictPositive() to APInt to determine if this APInt Value > 0.

llvm-svn: 35156
This commit is contained in:
Zhou Sheng 2007-03-19 05:22:18 +00:00
parent c5e74f6404
commit f89ea5068f
1 changed files with 6 additions and 0 deletions

View File

@ -374,6 +374,12 @@ public:
return !isNegative();
}
/// This just tests if the value of this APInt is strictly positive (> 0).
/// @brief Determine if this APInt Value is strictly positive.
inline bool isStrictPositive() const {
return isPositive() && (*this) != 0;
}
/// Arithmetic right-shift this APInt by shiftAmt.
/// @brief Arithmetic right-shift function.
APInt ashr(uint32_t shiftAmt) const;