From 716f27e14e736fc11639c52bd219abdb7e6f9ccf Mon Sep 17 00:00:00 2001 From: svn_bwardell Date: Thu, 21 Jul 2011 19:57:47 +0000 Subject: Fix typo which caused k8ifthen to not compile if SSE4.1 was not available. git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@15 105869f7-3296-0410-a4ea-f4349344b45a --- src/vectors-8-SSE2.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vectors-8-SSE2.h b/src/vectors-8-SSE2.h index 57945bd..15a45ed 100644 --- a/src/vectors-8-SSE2.h +++ b/src/vectors-8-SSE2.h @@ -206,7 +206,7 @@ static const union { #ifdef __SSE4_1__ # define k8ifthen(x,y,z) (_mm_blendv_pd(y,z,x)) #elif 0 -# define k8ifthen(x,y,z) \ +# define k8ifthen(x_,y_,z_) \ ({ \ CCTK_REAL8_VEC const xx=(x_); \ CCTK_REAL8_VEC const x=xx; \ @@ -225,7 +225,7 @@ static const union { r; \ }) #else -# define k8ifthen(x,y,z) \ +# define k8ifthen(x_,y_,z_) \ ({ \ CCTK_REAL8_VEC const xx=(x_); \ CCTK_REAL8_VEC const x=xx; \ -- cgit v1.2.3