summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--k9vamps/cputest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/k9vamps/cputest.cpp b/k9vamps/cputest.cpp
index c26cd3e..a7cd686 100644
--- a/k9vamps/cputest.cpp
+++ b/k9vamps/cputest.cpp
@@ -21,9 +21,9 @@
/* ebx saving is necessary for PIC. gcc seems unable to see it alone */
#define cpuid(index,eax,ebx,ecx,edx)\
__asm __volatile\
- ("mov %%"REG_b", %%"REG_S"\n\t"\
+ ("mov %%" REG_b ", %%" REG_S "\n\t"\
"cpuid\n\t"\
- "xchg %%"REG_b", %%"REG_S\
+ "xchg %%" REG_b ", %%" REG_S\
: "=a" (eax), "=S" (ebx),\
"=c" (ecx), "=d" (edx)\
: "0" (index));