Cycles: Fix compilation error on 32bit platforms

This commit is contained in:
Sergey Sharybin 2014-06-17 00:22:10 +06:00
parent f9b7617104
commit 2f527a88b6

@ -15,6 +15,9 @@
* limitations under the License
*/
/* SSE optimization disabled for now on 32 bit, see bug #36316 */
#if !(defined(__GNUC__) && (defined(i386) || defined(_M_IX86)))
#include "util_simd.h"
CCL_NAMESPACE_BEGIN
@ -44,3 +47,4 @@ const __m128 _mm_lookupmask_ps[16] = {
CCL_NAMESPACE_END
#endif