From 76c8fe995eace6ffc192290449c7aa0c87769fd3 Mon Sep 17 00:00:00 2001
From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de>
Date: Thu, 1 Mar 2018 12:29:16 +0100
Subject: [PATCH] Fix pointers for get_low/high

---
 dune/perftool/common/vectorclass.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/perftool/common/vectorclass.hh b/dune/perftool/common/vectorclass.hh
index 087f1fb9..35848d7b 100644
--- a/dune/perftool/common/vectorclass.hh
+++ b/dune/perftool/common/vectorclass.hh
@@ -703,7 +703,7 @@ struct Vec8d
   {
     BARRIER;
     Vec4d ret;
-    ret.load(&d);
+    ret.load(&_d);
     BARRIER;
     return ret;
   }
@@ -712,7 +712,7 @@ struct Vec8d
   {
     BARRIER;
     Vec4d ret;
-    ret.load(&d + 4);
+    ret.load(&_d + 4);
     BARRIER;
     return ret;
   }
-- 
GitLab