From 1e9b07d2859e3f945968251bd2e0984dfbf77235 Mon Sep 17 00:00:00 2001 From: Andreas Marek Date: Mon, 16 Apr 2018 10:18:38 +0200 Subject: [PATCH] Fix configure test for SPARC64 --- configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 6c23c2cf..c4acf4a7 100644 --- a/configure.ac +++ b/configure.ac @@ -722,10 +722,11 @@ fi if test x"${need_sparc64}" = x"yes"; then AC_MSG_CHECKING(whether we can compile SPARC64 with intrinsics in C) AC_COMPILE_IFELSE([AC_LANG_SOURCE([ -#include +#include +#include int main(int argc, char **argv) { - double* q; - __m128d h1 = _mm_loaddup_pd(q); + __m128d tau1; + __m128d h1 = _fjsp_neg_v2r8(tau1); return 0; } ])], -- GitLab