diff options
author | Erik Schnetter <schnetter@gmail.com> | 2013-06-12 22:18:07 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2013-06-12 22:18:07 -0400 |
commit | ccd85c75dbba4e5d744e8dd61fe2649b47f7350c (patch) | |
tree | 7977649a02766af286cf18a945f22f5db389021a | |
parent | 79bc8607c2983bf13d42c3d3af55c1992d1352f8 (diff) | |
download | vecmathlib-ccd85c75dbba4e5d744e8dd61fe2649b47f7350c.zip vecmathlib-ccd85c75dbba4e5d744e8dd61fe2649b47f7350c.tar.gz |
Correct last (?) syntax error
-rw-r--r-- | vec_float_neon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_float_neon.h b/vec_float_neon.h index a78893f..848ff62 100644 --- a/vec_float_neon.h +++ b/vec_float_neon.h @@ -223,7 +223,7 @@ namespace vecmathlib { boolvec_t signbit() const { //return *this < IV(I(0)); - return vshr_n_s32(v, FP::bits-1); + return intvec(vshr_n_s32(v, FP::bits-1)).as_bool(); } boolvec_t operator==(intvec const& x) const { return vceq_s32(v, x.v); } |