eina_cpu: use __asm__ instead of asm
authorcaro <caro>
Tue, 15 May 2012 05:48:27 +0000 (05:48 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 15 May 2012 05:48:27 +0000 (05:48 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@71092 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/eina_cpu.c

index b5e63dc..b5bb2cf 100644 (file)
@@ -58,7 +58,7 @@
 /* We save ebx and restore it to be PIC compatible */
 static inline void _x86_cpuid(int op, int *a, int *b, int *c, int *d)
 {
-   asm volatile (
+   __asm__ volatile (
 #if defined(__x86_64__)
       "pushq %%rbx      \n\t" /* save %ebx */
 #else