Uses __asm__ instead of asm keyword to prevent from troubles during compilation.

http://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html
This commit is contained in:
Romuald Conty 2013-01-30 15:11:24 +01:00
parent 6674459a57
commit d65d57d06e

View file

@ -62,7 +62,7 @@ extern "C" {
x ^= x >> 4; x ^= x >> 4;
return BIT(0x6996, x & 0xf); return BIT(0x6996, x & 0xf);
#else #else
asm("movl %1, %%eax\n" __asm__("movl %1, %%eax\n"
"mov %%ax, %%cx\n" "mov %%ax, %%cx\n"
"shrl $0x10, %%eax\n" "shrl $0x10, %%eax\n"
"xor %%ax, %%cx\n" "xor %%ax, %%cx\n"