core(build): fix i386 compilation

pull/16434/head
Alexander Alekhin 5 years ago
parent 3d5ca3ef75
commit e83438c23d
  1. 2
      modules/core/src/parallel_impl.cpp

@ -52,7 +52,7 @@ DECLARE_CV_PAUSE
#endif
#ifndef CV_PAUSE
# if defined __GNUC__ && (defined __i386__ || defined __x86_64__)
# if !defined(__SSE__)
# if !defined(__SSE2__)
static inline void cv_non_sse_mm_pause() { __asm__ __volatile__ ("rep; nop"); }
# define _mm_pause cv_non_sse_mm_pause
# endif

Loading…
Cancel
Save