#include "llvm/Support/SwapByteOrder.h"
#include "gtest/gtest.h"
#include <cstdlib>
#include <ctime>
usingnamespacellvm;
#undef max
namespace {
TEST(getSwappedBytes, UnsignedRoundTrip) { … }
TEST(getSwappedBytes, SignedRoundTrip) { … }
TEST(getSwappedBytes, uint8_t) { … }
TEST(getSwappedBytes, uint16_t) { … }
TEST(getSwappedBytes, uint32_t) { … }
TEST(getSwappedBytes, uint64_t) { … }
TEST(getSwappedBytes, int8_t) { … }
TEST(getSwappedBytes, int16_t) { … }
TEST(getSwappedBytes, int32_t) { … }
TEST(getSwappedBytes, int64_t) { … }
TEST(getSwappedBytes, float) { … }
TEST(getSwappedBytes, double) { … }
TEST(swapByteOrder, uint8_t) { … }
TEST(swapByteOrder, uint16_t) { … }
TEST(swapByteOrder, uint32_t) { … }
TEST(swapByteOrder, uint64_t) { … }
TEST(swapByteOrder, int8_t) { … }
TEST(swapByteOrder, int16_t) { … }
TEST(swapByteOrder, int32_t) { … }
TEST(swapByteOrder, int64_t) { … }
TEST(swapByteOrder, float) { … }
TEST(swapByteOrder, double) { … }
}