mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-03 18:29:50 +00:00
Fix generous source of VC++ truncation warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25311 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2f86c223d3
commit
b69c190c26
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user