summaryrefslogtreecommitdiffstats
path: root/vec_avx_double4.h
diff options
context:
space:
mode:
Diffstat (limited to 'vec_avx_double4.h')
-rw-r--r--vec_avx_double4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vec_avx_double4.h b/vec_avx_double4.h
index 6632c71..4117225 100644
--- a/vec_avx_double4.h
+++ b/vec_avx_double4.h
@@ -611,7 +611,7 @@ namespace vecmathlib {
realvec fmax(realvec y) const { return _mm256_max_pd(v, y.v); }
realvec fmin(realvec y) const { return _mm256_min_pd(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