aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/System
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-23 04:26:12 +0000
committerChris Lattner <sabre@nondot.org>2010-11-23 04:26:12 +0000
commit92267bb35a75fc83fe3c0302e9fce031a3f817ff (patch)
treeabd506ff3a9ce0bd4d5190bbc11213bfbf0e1348 /include/llvm/System
parente57016ab1ff37dfe7c2564ea9171cc10af52a15d (diff)
downloadexternal_llvm-92267bb35a75fc83fe3c0302e9fce031a3f817ff.zip
external_llvm-92267bb35a75fc83fe3c0302e9fce031a3f817ff.tar.gz
external_llvm-92267bb35a75fc83fe3c0302e9fce031a3f817ff.tar.bz2
fix this harder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119994 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System')
-rw-r--r--include/llvm/System/SwapByteOrder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/System/SwapByteOrder.h b/include/llvm/System/SwapByteOrder.h
index fb033a5..70a6f4d 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_32(uint32_t(value));
+ uint32_t Lo = SwapByteOrder_32(uint32_t(value >> 32));
return (Hi << 32) | Lo;
#endif
}