summaryrefslogtreecommitdiff
path: root/libs/ardour/sse_functions_avx.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/sse_functions_avx.cc')
-rw-r--r--libs/ardour/sse_functions_avx.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/sse_functions_avx.cc b/libs/ardour/sse_functions_avx.cc
index 218f3f5e91..19bca8041c 100644
--- a/libs/ardour/sse_functions_avx.cc
+++ b/libs/ardour/sse_functions_avx.cc
@@ -34,7 +34,7 @@ x86_sse_avx_find_peaks(const float* buf, uint32_t nframes, float *min, float *ma
// Work input until "buf" reaches 16 byte alignment
while ( ((intptr_t)buf) % 32 != 0 && nframes > 0) {
-
+
// Load the next float into the work buffer
work = _mm256_set1_ps(*buf);