arm.cpp 427 B

123456789101112131415
  1. // arm.cpp
  2. //
  3. // Copyright (c) 2012 Steven Watanabe
  4. //
  5. // Distributed under the Boost Software License Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. #if !defined(__arm__) && !defined(__thumb__) && \
  9. !defined(__TARGET_ARCH_ARM) && !defined(__TARGET_ARCH_THUMB) && \
  10. !defined(_ARM) && !defined(_M_ARM) && \
  11. !defined(__aarch64__)
  12. #error "Not ARM"
  13. #endif