diff --git a/include/llvm/Support/MathExtras.h b/include/llvm/Support/MathExtras.h index 1935f77b49a..65f6ed3f753 100644 --- a/include/llvm/Support/MathExtras.h +++ b/include/llvm/Support/MathExtras.h @@ -100,8 +100,8 @@ inline unsigned ByteSwap_32(unsigned Value) { // ByteSwap_64 - This function returns a byte-swapped representation of the // 64-bit argument, Value. inline uint64_t ByteSwap_64(uint64_t Value) { - uint64_t Hi = ByteSwap_32(Value); - uint64_t Lo = ByteSwap_32(Value >> 32); + uint64_t Hi = ByteSwap_32(unsigned(Value)); + uint64_t Lo = ByteSwap_32(unsigned(Value >> 32)); return (Hi << 32) | Lo; }