Merge pull request #8976 from jrtc27:fast-math-asm

pull/8981/head
Alexander Alekhin 8 years ago
commit 51e16bbe81
  1. 2
      modules/core/include/opencv2/core/fast_math.hpp

@ -80,7 +80,7 @@
int res; \
float temp; \
(void)temp; \
asm(_asm_string : [res] "=r" (res), [temp] "=w" (temp) : [value] "w" (_value)); \
__asm__(_asm_string : [res] "=r" (res), [temp] "=w" (temp) : [value] "w" (_value)); \
return res
// 2. version for double
#ifdef __clang__

Loading…
Cancel
Save