From ff5adcb0cc624c38c5947964a8a9a38ed84e2bc0 Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de> Date: Thu, 27 Apr 2017 16:58:51 +0200 Subject: [PATCH] [bugfix] COrrect guard of operator counting Vec8d --- dune/perftool/common/vectorclass.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dune/perftool/common/vectorclass.hh b/dune/perftool/common/vectorclass.hh index 8d31883e..bac161b2 100644 --- a/dune/perftool/common/vectorclass.hh +++ b/dune/perftool/common/vectorclass.hh @@ -590,7 +590,7 @@ static inline Vec4d blend4d(Vec4d const & a, Vec4d const & b) { return r; } -#if MAC_VECTOR_SIZE >= 512 +#if MAX_VECTOR_SIZE >= 512 struct Vec8d { -- GitLab