1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Fix generous source of VC++ truncation warnings.

llvm-svn: 25311
This commit is contained in:
Jeff Cohen 2006-01-14 02:17:20 +00:00
parent 82014d8dcd
commit ae3d2a938b

View File

@ -100,8 +100,8 @@ inline unsigned ByteSwap_32(unsigned Value) {
// ByteSwap_64 - This function returns a byte-swapped representation of the // ByteSwap_64 - This function returns a byte-swapped representation of the
// 64-bit argument, Value. // 64-bit argument, Value.
inline uint64_t ByteSwap_64(uint64_t Value) { inline uint64_t ByteSwap_64(uint64_t Value) {
uint64_t Hi = ByteSwap_32(Value); uint64_t Hi = ByteSwap_32(unsigned(Value));
uint64_t Lo = ByteSwap_32(Value >> 32); uint64_t Lo = ByteSwap_32(unsigned(Value >> 32));
return (Hi << 32) | Lo; return (Hi << 32) | Lo;
} }