aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-03-30 06:39:42 +0000
committerDuncan Sands <baldrick@free.fr>2007-03-30 06:39:42 +0000
commit48a3e98c272d673f075c51d078140765fc267eb8 (patch)
tree47b085c44715388666530cae260977890027ecfd /include
parent90b9681886bb6dcaa2335b5874194a1820967c88 (diff)
downloadexternal_llvm-48a3e98c272d673f075c51d078140765fc267eb8.zip
external_llvm-48a3e98c272d673f075c51d078140765fc267eb8.tar.gz
external_llvm-48a3e98c272d673f075c51d078140765fc267eb8.tar.bz2
Correct typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35504 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 25ea4a2..6ccefc2 100644
--- a/include/llvm/ADT/APInt.h
+++ b/include/llvm/ADT/APInt.h
@@ -272,7 +272,7 @@ public:
/// @returns true if the argument APInt value is a power of two > 0.
bool isPowerOf2() const;
- /// This converts the APInt to a boolean valy as a test against zero.
+ /// This converts the APInt to a boolean value as a test against zero.
/// @brief Boolean conversion function.
inline bool getBoolValue() const {
return countLeadingZeros() != BitWidth;