File indexing completed on 2025-12-16 10:05:03
0001
0002
0003
0004
0005
0006
0007
0008 #include <boost/predef/architecture/x86/32.h>
0009 #include <boost/predef/architecture/x86/64.h>
0010
0011 #ifndef BOOST_PREDEF_ARCHITECTURE_X86_H
0012 #define BOOST_PREDEF_ARCHITECTURE_X86_H
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #define BOOST_ARCH_X86 BOOST_VERSION_NUMBER_NOT_AVAILABLE
0023
0024 #if BOOST_ARCH_X86_32 || BOOST_ARCH_X86_64
0025 # undef BOOST_ARCH_X86
0026 # define BOOST_ARCH_X86 BOOST_VERSION_NUMBER_AVAILABLE
0027 #endif
0028
0029 #if BOOST_ARCH_X86
0030 # define BOOST_ARCH_X86_AVAILABLE
0031 #endif
0032
0033 #define BOOST_ARCH_X86_NAME "Intel x86"
0034
0035 #endif
0036
0037 #include <boost/predef/detail/test.h>
0038 BOOST_PREDEF_DECLARE_TEST(BOOST_ARCH_X86,BOOST_ARCH_X86_NAME)