aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-01-28 17:06:20 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-01-28 17:06:20 +0000
commit375b5faa8a433a5707d59a645e5573c89eed9dfc (patch)
treef400e855016e99b19ff807a013bce1e684105620 /test
parent13b078efc956f4adb19029d826b6fd3c383f499b (diff)
Fix copy-paste error in first_aligned test.
Diffstat (limited to 'test')
-rw-r--r--test/first_aligned.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/first_aligned.cpp b/test/first_aligned.cpp
index 3cf1a7eef..f00ed57a5 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_ALIGN16 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);