aboutsummaryrefslogtreecommitdiff
path: root/util/inteltool/cpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/inteltool/cpu.c')
-rw-r--r--util/inteltool/cpu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/inteltool/cpu.c b/util/inteltool/cpu.c
index 828f99f84f..ee49d96b0e 100644
--- a/util/inteltool/cpu.c
+++ b/util/inteltool/cpu.c
@@ -33,12 +33,12 @@ unsigned int cpuid(unsigned int op)
uint32_t ret;
#if defined(__DARWIN__) && !defined(__LP64__)
- asm volatile (
- "pushl %%ebx \n"
- "cpuid \n"
- "popl %%ebx \n"
- : "=a" (ret) : "a" (op) : "%ecx", "%edx"
- );
+ asm volatile (
+ "pushl %%ebx\n"
+ "cpuid\n"
+ "popl %%ebx\n"
+ : "=a" (ret) : "a" (op) : "%ecx", "%edx"
+ );
#else
asm ("cpuid" : "=a" (ret) : "a" (op) : "%ebx", "%ecx", "%edx");
#endif