diff options
Diffstat (limited to 'include/llvm/Support/MathExtras.h')
-rw-r--r-- | include/llvm/Support/MathExtras.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h index 1dbcf43891..32cc473022 100644 --- a/include/llvm/Support/MathExtras.h +++ b/include/llvm/Support/MathExtras.h @@ -184,7 +184,8 @@ inline unsigned CountPopulation_32(unsigned Value) { // CountPopulation_64 - this function counts the number of set bits in a value, // (64 bit edition.) inline unsigned CountPopulation_64(uint64_t Value) { - return CountPopulation_32(Value >> 32) + CountPopulation_32(Value); + return CountPopulation_32(unsigned(Value >> 32)) + + CountPopulation_32(unsigned(Value)); } // Log2_32 - This function returns the floor log base 2 of the specified value, |