From f29c8c4fd764aa7f8e5690ee4317230bd6c9ff86 Mon Sep 17 00:00:00 2001 From: eschnett Date: Fri, 19 Jul 2013 19:23:30 +0000 Subject: Correct syntax error git-svn-id: https://svn.cct.lsu.edu/repos/numrel/LSUThorns/Vectors/trunk@86 105869f7-3296-0410-a4ea-f4349344b45a --- src/vectors-4-SSE.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- cgit v1.2.3