summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Brüns <stefan.bruens@rwth-aachen.de>2018-03-27 02:28:22 +0200
committerRuben Undheim <ruben.undheim@gmail.com>2018-11-27 18:59:05 +0100
commit90e3af27b5b6a6186bfe1c41789faf6e90bd1554 (patch)
tree7811b70457db34b8430452d28b91eb7345e18750
parent1374b983e0f78b0a938d68f1cbc79e68ff6d26d1 (diff)
Guard xmmintrin.h include so it is only used when necessary
The x86/SSE specific code for Flush-To-Zero is only used when SSE_CORRECT_DENORMALS is not defined. Guarding the include allows the code to compile on e.g. ARM. Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de> Gbp-Pq: Name 0007-Guard-xmmintrin.h-include-so-it-is-only-used-when-ne.patch
-rw-r--r--openEMS/FDTD/engine_multithread.cpp3
-rw-r--r--openEMS/FDTD/engine_sse.cpp3
2 files changed, 6 insertions, 0 deletions
diff --git a/openEMS/FDTD/engine_multithread.cpp b/openEMS/FDTD/engine_multithread.cpp
index 7370198..7ebe0d7 100644
--- a/openEMS/FDTD/engine_multithread.cpp
+++ b/openEMS/FDTD/engine_multithread.cpp
@@ -32,7 +32,10 @@
#include "boost/date_time/posix_time/posix_time.hpp"
#include "boost/date_time/gregorian/gregorian.hpp"
#include <iomanip>
+
+#ifndef SSE_CORRECT_DENORMALS
#include <xmmintrin.h>
+#endif
//! \brief construct an Engine_Multithread instance
//! it's the responsibility of the caller to free the returned pointer
diff --git a/openEMS/FDTD/engine_sse.cpp b/openEMS/FDTD/engine_sse.cpp
index 660e6d6..2e06685 100644
--- a/openEMS/FDTD/engine_sse.cpp
+++ b/openEMS/FDTD/engine_sse.cpp
@@ -15,7 +15,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef SSE_CORRECT_DENORMALS
#include <xmmintrin.h>
+#endif
+
#include "engine_sse.h"
//! \brief construct an Engine_sse instance