aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreschnett <eschnett@105869f7-3296-0410-a4ea-f4349344b45a>2013-07-19 19:23:30 +0000
committereschnett <eschnett@105869f7-3296-0410-a4ea-f4349344b45a>2013-07-19 19:23:30 +0000
commitf29c8c4fd764aa7f8e5690ee4317230bd6c9ff86 (patch)
tree986ee8cfb0f1eec88f2d743e8d7640dbb0cc7ed2
parentdc69911dd15fa1fa24c51ca222fc7883d3fc5cff (diff)
Correct syntax error
git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@86 105869f7-3296-0410-a4ea-f4349344b45a
-rw-r--r--src/vectors-4-SSE.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vectors-4-SSE.h b/src/vectors-4-SSE.h
index bdbc10d..0f8c74d 100644
--- a/src/vectors-4-SSE.h
+++ b/src/vectors-4-SSE.h
@@ -730,7 +730,7 @@ CCTK_REAL4_VEC k4ifthen(CCTK_BOOLEAN4_VEC const x,
// This assumes that all logical operations always return either
// lfalse or ltrue, and nothing "in between"
// (z & ~mask) | (y & mask) where imask = ~mask
- return _mm_or_ps(_mm_and_ps(I2RI(x), y), _mm_andnot_ps(I2R(x), z));
+ return _mm_or_ps(_mm_and_ps(I2R(x), y), _mm_andnot_ps(I2R(x), z));
#endif
}