X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fsse_functions_xmm.cc;h=6eac488a253a3af89df5f7044a1e60d07ed126b2;hb=f169ff3db3943b9992042e71048cade2ca1fe39d;hp=f8a53cc6f8be6694a4d97197795926be021d3c7d;hpb=ad017365f7a73f8ba57f667cc1aa36478b48c50e;p=ardour.git 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);