summaryrefslogtreecommitdiffstats
path: root/vec_avx_float8.h
diff options
context:
space:
mode:
Diffstat (limited to 'vec_avx_float8.h')
-rw-r--r--vec_avx_float8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_avx_float8.h b/vec_avx_float8.h
index 3ff6197..aeea50b 100644
--- a/vec_avx_float8.h
+++ b/vec_avx_float8.h
@@ -605,7 +605,7 @@ namespace vecmathlib {
realvec fmax(realvec y) const { return _mm256_max_ps(v, y.v); }
realvec fmin(realvec y) const { return _mm256_min_ps(v, y.v); }
realvec fmod(realvec y) const { return MF::vml_fmod(*this, y); }
- realvec frexp(intvec_t& r) const { return MF::vml_frexp(*this, r); }
+ realvec frexp(intvec_t* r) const { return MF::vml_frexp(*this, r); }
realvec hypot(realvec y) const { return MF::vml_hypot(*this, y); }
intvec_t ilogb() const { return MF::vml_ilogb(*this); }
boolvec_t isfinite() const { return MF::vml_isfinite(*this); }
OpenPOWER on IntegriCloud