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