[llvm] r368909 - SwapByteOrder.h: don't check for unsupported GCC versions
JF Bastien via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 14 12:59:05 PDT 2019
Author: jfb
Date: Wed Aug 14 12:59:05 2019
New Revision: 368909
URL: http://llvm.org/viewvc/llvm-project?rev=368909&view=rev
Log:
SwapByteOrder.h: don't check for unsupported GCC versions
Modified:
llvm/trunk/include/llvm/Support/SwapByteOrder.h
Modified: llvm/trunk/include/llvm/Support/SwapByteOrder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/SwapByteOrder.h?rev=368909&r1=368908&r2=368909&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/SwapByteOrder.h (original)
+++ llvm/trunk/include/llvm/Support/SwapByteOrder.h Wed Aug 14 12:59:05 2019
@@ -39,10 +39,9 @@ inline uint16_t SwapByteOrder_16(uint16_
#endif
}
-/// SwapByteOrder_32 - This function returns a byte-swapped representation of
-/// the 32-bit argument.
+/// This function returns a byte-swapped representation of the 32-bit argument.
inline uint32_t SwapByteOrder_32(uint32_t value) {
-#if defined(__llvm__) || (LLVM_GNUC_PREREQ(4, 3, 0) && !defined(__ICC))
+#if defined(__llvm__) || (defined(__GNUC__) && !defined(__ICC))
return __builtin_bswap32(value);
#elif defined(_MSC_VER) && !defined(_DEBUG)
return _byteswap_ulong(value);
@@ -55,10 +54,9 @@ inline uint32_t SwapByteOrder_32(uint32_
#endif
}
-/// SwapByteOrder_64 - This function returns a byte-swapped representation of
-/// the 64-bit argument.
+/// This function returns a byte-swapped representation of the 64-bit argument.
inline uint64_t SwapByteOrder_64(uint64_t value) {
-#if defined(__llvm__) || (LLVM_GNUC_PREREQ(4, 3, 0) && !defined(__ICC))
+#if defined(__llvm__) || (defined(__GNUC__) && !defined(__ICC))
return __builtin_bswap64(value);
#elif defined(_MSC_VER) && !defined(_DEBUG)
return _byteswap_uint64(value);
More information about the llvm-commits
mailing list