| 18 | |
| 19 | template<typename Scalar> |
| 20 | void test_none_aligned_helper(Scalar *array, int size) |
| 21 | { |
| 22 | EIGEN_UNUSED_VARIABLE(array); |
| 23 | EIGEN_UNUSED_VARIABLE(size); |
| 24 | VERIFY(internal::packet_traits<Scalar>::size == 1 || internal::first_default_aligned(array, size) == size); |
| 25 | } |
| 26 | |
| 27 | struct some_non_vectorizable_type { float x; }; |
| 28 |
no test coverage detected