| 11 | |
| 12 | template<typename Scalar> |
| 13 | void test_first_aligned_helper(Scalar *array, int size) |
| 14 | { |
| 15 | const int packet_size = sizeof(Scalar) * internal::packet_traits<Scalar>::size; |
| 16 | VERIFY(((size_t(array) + sizeof(Scalar) * internal::first_default_aligned(array, size)) % packet_size) == 0); |
| 17 | } |
| 18 | |
| 19 | template<typename Scalar> |
| 20 | void test_none_aligned_helper(Scalar *array, int size) |
no test coverage detected