summaryrefslogtreecommitdiff
path: root/libs/ardour/sse_functions_xmm.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/sse_functions_xmm.cc')
-rw-r--r--libs/ardour/sse_functions_xmm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/sse_functions_xmm.cc b/libs/ardour/sse_functions_xmm.cc
index f8a53cc6f8..6eac488a25 100644
--- a/libs/ardour/sse_functions_xmm.cc
+++ b/libs/ardour/sse_functions_xmm.cc
@@ -45,7 +45,7 @@ x86_sse_find_peaks(const ARDOUR::Sample* buf, ARDOUR::pframes_t nframes, float *
// use 64 byte prefetch for quadruple quads
while (nframes >= 16) {
-#ifdef COMPILER_MSVC
+#ifdef COMPILER_MSVC
_mm_prefetch(((char*)buf+64), 0); // A total guess! Assumed to be eqivalent to
#else // the line below but waiting to be tested !!
__builtin_prefetch(buf+64,0,0);