Commit ce2733bb authored by Maksim Shabunin's avatar Maksim Shabunin

Merge pull request #7242 from bkuhls:asm

parents 0a30f64f c7045184
...@@ -318,7 +318,7 @@ enum { ...@@ -318,7 +318,7 @@ enum {
int res; \ int res; \
float temp; \ float temp; \
(void)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
#ifdef __clang__ #ifdef __clang__
......
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