From cd34a1d3517cedd1e36b3a060ce9b160437a7bc4 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 28 Jan 2010 14:00:09 -0500 Subject: [PATCH] backport bug fix by Jitse. --- test/first_aligned.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/first_aligned.cpp b/test/first_aligned.cpp index 047266c6d..c6631fb42 100644 --- a/test/first_aligned.cpp +++ b/test/first_aligned.cpp @@ -50,9 +50,9 @@ void test_first_aligned() test_first_aligned_helper(array_float+5, 50); EIGEN_ALIGN_128 double array_double[100]; - test_first_aligned_helper(array_float, 50); - test_first_aligned_helper(array_float+1, 50); - test_first_aligned_helper(array_float+2, 50); + test_first_aligned_helper(array_double, 50); + test_first_aligned_helper(array_double+1, 50); + test_first_aligned_helper(array_double+2, 50); double *array_double_plus_4_bytes = (double*)(size_t(array_double)+4); test_none_aligned_helper(array_double_plus_4_bytes, 50);