aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/llvm/ADT/APInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h
index aa53790..5f4d674 100644
--- a/include/llvm/ADT/APInt.h
+++ b/include/llvm/ADT/APInt.h
@@ -376,7 +376,7 @@ public:
/// 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 {
+ inline bool isStrictlyPositive() const {
return isPositive() && (*this) != 0;
}