@@ -32,7 +32,7 @@ struct load_store_test
3232 using uint16_vector_type = std::vector<uint16_t , allocator<uint16_t >>;
3333 using int32_vector_type = std::vector<int32_t , allocator<int32_t >>;
3434 using uint32_vector_type = std::vector<uint32_t , allocator<uint32_t >>;
35- #ifndef XSIMD_WITH_ALTIVEC
35+ #if ! XSIMD_WITH_ALTIVEC
3636 using int64_vector_type = std::vector<int64_t , allocator<int64_t >>;
3737 using uint64_vector_type = std::vector<uint64_t , allocator<uint64_t >>;
3838#endif
@@ -51,7 +51,7 @@ struct load_store_test
5151 uint16_vector_type ui16_vec;
5252 int32_vector_type i32_vec;
5353 uint32_vector_type ui32_vec;
54- #ifndef XSIMD_WITH_ALTIVEC
54+ #if ! XSIMD_WITH_ALTIVEC
5555 int64_vector_type i64_vec;
5656 uint64_vector_type ui64_vec;
5757#endif
@@ -74,7 +74,7 @@ struct load_store_test
7474 init_test_vector (ui16_vec);
7575 init_test_vector (i32_vec);
7676 init_test_vector (ui32_vec);
77- #ifndef XSIMD_WITH_ALTIVEC
77+ #if ! XSIMD_WITH_ALTIVEC
7878 init_test_vector (i64_vec);
7979 init_test_vector (ui64_vec);
8080#endif
@@ -96,7 +96,7 @@ struct load_store_test
9696 test_load_impl (ui16_vec, " load uint16_t" );
9797 test_load_impl (i32_vec, " load int32_t" );
9898 test_load_impl (ui32_vec, " load uint32_t" );
99- #ifndef XSIMD_WITH_ALTIVEC
99+ #if ! XSIMD_WITH_ALTIVEC
100100 test_load_impl (i64_vec, " load int64_t" );
101101 test_load_impl (ui64_vec, " load uint64_t" );
102102#endif
@@ -118,7 +118,7 @@ struct load_store_test
118118 test_store_impl (ui16_vec, " load uint16_t" );
119119 test_store_impl (i32_vec, " load int32_t" );
120120 test_store_impl (ui32_vec, " load uint32_t" );
121- #ifndef XSIMD_WITH_ALTIVEC
121+ #if ! XSIMD_WITH_ALTIVEC
122122 test_store_impl (i64_vec, " load int64_t" );
123123 test_store_impl (ui64_vec, " load uint64_t" );
124124#endif
@@ -139,7 +139,7 @@ struct load_store_test
139139 test_gather_impl (ui16_vec, " gather uint16_t" );
140140 test_gather_impl (i32_vec, " gather int32_t" );
141141 test_gather_impl (ui32_vec, " gather uint32_t" );
142- #ifndef XSIMD_WITH_ALTIVEC
142+ #if ! XSIMD_WITH_ALTIVEC
143143 test_gather_impl (i64_vec, " gather int64_t" );
144144 test_gather_impl (ui64_vec, " gather uint64_t" );
145145#endif
@@ -162,7 +162,7 @@ struct load_store_test
162162 test_scatter_impl (ui16_vec, " scatter uint16_t" );
163163 test_scatter_impl (i32_vec, " scatter int32_t" );
164164 test_scatter_impl (ui32_vec, " scatter uint32_t" );
165- #ifndef XSIMD_WITH_ALTIVEC
165+ #if ! XSIMD_WITH_ALTIVEC
166166 test_scatter_impl (i64_vec, " scatter int64_t" );
167167 test_scatter_impl (ui64_vec, " scatter uint64_t" );
168168#endif
0 commit comments