From ccd85c75dbba4e5d744e8dd61fe2649b47f7350c Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Wed, 12 Jun 2013 22:18:07 -0400 Subject: Correct last (?) syntax error --- vec_float_neon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit v1.1