ia64.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. Copyright Rene Rivera 2008-2015
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #ifndef BOOST_PREDEF_ARCHITECTURE_IA64_H
  8. #define BOOST_PREDEF_ARCHITECTURE_IA64_H
  9. #include <boost/predef/version_number.h>
  10. #include <boost/predef/make.h>
  11. /*`
  12. [heading `BOOST_ARCH_IA64`]
  13. [@http://en.wikipedia.org/wiki/Ia64 Intel Itanium 64] architecture.
  14. [table
  15. [[__predef_symbol__] [__predef_version__]]
  16. [[`__ia64__`] [__predef_detection__]]
  17. [[`_IA64`] [__predef_detection__]]
  18. [[`__IA64__`] [__predef_detection__]]
  19. [[`__ia64`] [__predef_detection__]]
  20. [[`_M_IA64`] [__predef_detection__]]
  21. [[`__itanium__`] [__predef_detection__]]
  22. ]
  23. */
  24. #define BOOST_ARCH_IA64 BOOST_VERSION_NUMBER_NOT_AVAILABLE
  25. #if defined(__ia64__) || defined(_IA64) || \
  26. defined(__IA64__) || defined(__ia64) || \
  27. defined(_M_IA64) || defined(__itanium__)
  28. # undef BOOST_ARCH_IA64
  29. # define BOOST_ARCH_IA64 BOOST_VERSION_NUMBER_AVAILABLE
  30. #endif
  31. #if BOOST_ARCH_IA64
  32. # define BOOST_ARCH_IA64_AVAILABLE
  33. #endif
  34. #define BOOST_ARCH_IA64_NAME "Intel Itanium 64"
  35. #endif
  36. #include <boost/predef/detail/test.h>
  37. BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_IA64,BOOST_ARCH_IA64_NAME)