diff options
author | JF Bastien <jfbastien@apple.com> | 2019-08-14 19:59:05 +0000 |
---|---|---|
committer | JF Bastien <jfbastien@apple.com> | 2019-08-14 19:59:05 +0000 |
commit | ee6f3dd14dec0548c7aaf3c2461ff0998c70d1f6 (patch) | |
tree | 8ccab17e017cf7ff99e0b1bf2985860dd42a3906 | |
parent | 6ff2a1c878eb8045e7a4e8ca0b80b76976050002 (diff) | |
download | bcm5719-llvm-ee6f3dd14dec0548c7aaf3c2461ff0998c70d1f6.tar.gz bcm5719-llvm-ee6f3dd14dec0548c7aaf3c2461ff0998c70d1f6.zip |
SwapByteOrder.h: don't check for unsupported GCC versions
llvm-svn: 368909
-rw-r--r-- | llvm/include/llvm/Support/SwapByteOrder.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/include/llvm/Support/SwapByteOrder.h b/llvm/include/llvm/Support/SwapByteOrder.h index 06a447a27c2..ec60a214cd0 100644 --- a/llvm/include/llvm/Support/SwapByteOrder.h +++ b/llvm/include/llvm/Support/SwapByteOrder.h @@ -39,10 +39,9 @@ inline uint16_t SwapByteOrder_16(uint16_t value) { #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_t value) { #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); |