mirror of https://gitee.com/bigwinds/arangodb
28 lines
777 B
C++
28 lines
777 B
C++
// Copyright Beman Dawes 2013
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#include "test.hpp"
|
|
#include <iostream>
|
|
#include <boost/assert.hpp>
|
|
|
|
typedef unsigned short uint16_t;
|
|
typedef unsigned int uint32_t;
|
|
typedef unsigned long long uint64_t;
|
|
|
|
int main()
|
|
{
|
|
std::cout << "BOOST_ENDIAN_INTRINSIC_MSG: " BOOST_ENDIAN_INTRINSIC_MSG << std::endl;
|
|
|
|
#ifndef BOOST_ENDIAN_NO_INTRINSICS
|
|
uint16_t x2 = 0x1122U;
|
|
BOOST_ASSERT(BOOST_ENDIAN_INTRINSIC_BYTE_SWAP_2(x2) == 0x2211U);
|
|
uint32_t x4 = 0x11223344UL;
|
|
BOOST_ASSERT(BOOST_ENDIAN_INTRINSIC_BYTE_SWAP_4(x4) == 0x44332211UL);
|
|
uint64_t x8 = 0x1122334455667788U;
|
|
BOOST_ASSERT(BOOST_ENDIAN_INTRINSIC_BYTE_SWAP_8(x8) == 0x8877665544332211ULL);
|
|
#endif
|
|
return 0;
|
|
}
|