summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-11-26 16:43:57 -0500
committerErik Schnetter <schnetter@gmail.com>2013-11-26 16:43:57 -0500
commit2ae406aa1d651f65d000ce851d8b2c76fcb0ddc8 (patch)
treeaedccccb9dccb40f70ad583a27ab22141214bec9
parentfa0675289ce237b9f47529f953c5138394a3066d (diff)
downloadvecmathlib-2ae406aa1d651f65d000ce851d8b2c76fcb0ddc8.zip
vecmathlib-2ae406aa1d651f65d000ce851d8b2c76fcb0ddc8.tar.gz
Correct syntax errors in NEON vectors
-rw-r--r--vec_neon_float2.h2
-rw-r--r--vec_neon_float4.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/vec_neon_float2.h b/vec_neon_float2.h
index 5b01d7b..3a21a05 100644
--- a/vec_neon_float2.h
+++ b/vec_neon_float2.h
@@ -208,7 +208,7 @@ namespace vecmathlib {
intvec_t bitifthen(intvec_t x, intvec_t y) const
{
- return vbsl_s32(vreinterpret_u32_s32(v), x.v, y.v)
+ return vbsl_s32(vreinterpret_u32_s32(v), x.v, y.v);
}
diff --git a/vec_neon_float4.h b/vec_neon_float4.h
index 94a77b9..2bd9dda 100644
--- a/vec_neon_float4.h
+++ b/vec_neon_float4.h
@@ -214,7 +214,7 @@ namespace vecmathlib {
intvec_t bitifthen(intvec_t x, intvec_t y) const
{
- return vbslq_s32(vreinterpretq_u32_s32(v), x.v, y.v)
+ return vbslq_s32(vreinterpretq_u32_s32(v), x.v, y.v);
}
OpenPOWER on IntegriCloud