aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsvn_bwardell <svn_bwardell@105869f7-3296-0410-a4ea-f4349344b45a>2011-07-21 19:57:47 +0000
committersvn_bwardell <svn_bwardell@105869f7-3296-0410-a4ea-f4349344b45a>2011-07-21 19:57:47 +0000
commit716f27e14e736fc11639c52bd219abdb7e6f9ccf (patch)
tree082f3cbb80c87117d5ed92abd3dce420d6eade49
parent3a045ddede56424a77d6ef20fa38b2e59fca5f76 (diff)
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
-rw-r--r--src/vectors-8-SSE2.h4
1 files 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; \