Commit 06876926 authored by Ilya Lavrenov's avatar Ilya Lavrenov

fixed compilation warning

parent 21e9edd1
...@@ -317,6 +317,7 @@ enum { ...@@ -317,6 +317,7 @@ enum {
#define ARM_ROUND(_value, _asm_string) \ #define ARM_ROUND(_value, _asm_string) \
int res; \ int res; \
float temp; \ 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; return res;
// 2. version for double // 2. version for double
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment