types_c.h: Fix compiling VFP assembler code
authorBernd Kuhls <bernd.kuhls@t-online.de>
Tue, 6 Sep 2016 09:49:00 +0000 (11:49 +0200)
committerBernd Kuhls <bernd.kuhls@t-online.de>
Tue, 6 Sep 2016 10:25:09 +0000 (12:25 +0200)
Replace asm by __asm__ according to
https://gcc.gnu.org/onlinedocs/gcc/Alternate-Keywords.html#Alternate-Keywords
as suggested by Arnout Vandecappelle:
http://lists.busybox.net/pipermail/buildroot/2016-September/171491.html

to fix build errors in ffmpeg with opencv2 support detected by
buildroot autobuilders:
http://autobuild.buildroot.net/results/c32/c32a21240a9933796ee850349a62ff3c2314f25c/build-end.log

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
modules/core/include/opencv2/core/types_c.h

index c21cd2c..771715d 100644 (file)
@@ -318,7 +318,7 @@ enum {
     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__