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