1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Correct typo.

llvm-svn: 35504
This commit is contained in:
Duncan Sands 2007-03-30 06:39:42 +00:00
parent 382723d8b4
commit def480579a

View File

@ -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;