diff --git a/include/llvm/System/SwapByteOrder.h b/include/llvm/System/SwapByteOrder.h index 110db341a02..fb033a52ef7 100644 --- a/include/llvm/System/SwapByteOrder.h +++ b/include/llvm/System/SwapByteOrder.h @@ -62,8 +62,8 @@ inline uint64_t SwapByteOrder_64(uint64_t value) { #elif defined(_MSC_VER) && !defined(_DEBUG) return _byteswap_uint64(value); #else - uint64_t Hi = SwapByteOrder(uint32_t(value)); - uint32_t Lo = SwapByteOrder(uint32_t(value >> 32)); + uint64_t Hi = SwapByteOrder(uint32_t(value)); + uint32_t Lo = SwapByteOrder(uint32_t(value >> 32)); return (Hi << 32) | Lo; #endif }