PPC: Use *real* versions as default version number

This commit is contained in:
Charly Chevalier
2015-07-15 13:49:08 +02:00
parent b917db9850
commit 4c2c48967e
3 changed files with 3 additions and 9 deletions

View File

@ -24,11 +24,9 @@ http://www.boost.org/LICENSE_1_0.txt)
] ]
*/ */
#define BOOST_HW_SIMD_PPC_QPX BOOST_VERSION_NUMBER_NOT_AVAILABLE #define BOOST_HW_SIMD_PPC_QPX BOOST_VERSION_NUMBER(2, 0, 0)
#if defined(__VECTOR4DOUBLE__) #if defined(__VECTOR4DOUBLE__)
# undef BOOST_HW_SIMD_PPC_QPX
# define BOOST_HW_SIMD_PPC_QPX BOOST_VERSION_NUMBER(2, 0, 0)
# define BOOST_HW_SIMD_PPC_QPX_AVAILABLE # define BOOST_HW_SIMD_PPC_QPX_AVAILABLE
#endif #endif

View File

@ -25,11 +25,9 @@ http://www.boost.org/LICENSE_1_0.txt)
] ]
*/ */
#define BOOST_HW_SIMD_PPC_VMX BOOST_VERSION_NUMBER_NOT_AVAILABLE #define BOOST_HW_SIMD_PPC_VMX BOOST_VERSION_NUMBER(1, 0, 0)
#if defined(__ALTIVEC__) || defined(__VEC__) #if defined(__ALTIVEC__) || defined(__VEC__)
# undef BOOST_HW_SIMD_PPC_VMX
# define BOOST_HW_SIMD_PPC_VMX BOOST_VERSION_NUMBER(1, 0, 0)
# define BOOST_HW_SIMD_PPC_VMX_AVAILABLE # define BOOST_HW_SIMD_PPC_VMX_AVAILABLE
#endif #endif

View File

@ -24,11 +24,9 @@ http://www.boost.org/LICENSE_1_0.txt)
] ]
*/ */
#define BOOST_HW_SIMD_PPC_VSX BOOST_VERSION_NUMBER_NOT_AVAILABLE #define BOOST_HW_SIMD_PPC_VSX BOOST_VERSION_NUMBER(1, 1, 0)
#if defined(__VSX__) #if defined(__VSX__)
# undef BOOST_HW_SIMD_PPC_VSX
# define BOOST_HW_SIMD_PPC_VSX BOOST_VERSION_NUMBER(1, 1, 0)
# define BOOST_HW_SIMD_PPC_VSX_AVAILABLE # define BOOST_HW_SIMD_PPC_VSX_AVAILABLE
#endif #endif