diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-11-11 04:50:32 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-11-11 05:27:19 +0100 |
commit | 2c12df9001433b3701e2ee81a4248b2834a13552 (patch) | |
tree | 0f1e194e578fe515fd77232797b43d0a10117748 | |
parent | ed5af775b1f150aa1717964afd452c382ed85152 (diff) |
core: make cpuid code compile cleanly with 32bit PIC0.9.19-stable
-rw-r--r-- | src/pulsecore/core-util.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/pulsecore/core-util.c b/src/pulsecore/core-util.c index 11e3d696..258e8eec 100644 --- a/src/pulsecore/core-util.c +++ b/src/pulsecore/core-util.c @@ -117,6 +117,7 @@ #include <pulsecore/strbuf.h> #include <pulsecore/usergroup.h> #include <pulsecore/strlist.h> +#include <pulsecore/cpu-x86.h> #include "core-util.h" @@ -2935,10 +2936,13 @@ pa_bool_t pa_running_in_vm(void) { pa_zero(sig); __asm__ __volatile__ ( - " xor %%ebx, %%ebx \n\t" + /* ebx/rbx is being used for PIC! */ + " push %%"PA_REG_b" \n\t" " cpuid \n\t" + " mov %%ebx, %1 \n\t" + " pop %%"PA_REG_b" \n\t" - : "=a" (eax), "=b" (sig.sig32[0]), "=c" (sig.sig32[1]), "=d" (sig.sig32[2]) + : "=a" (eax), "=r" (sig.sig32[0]), "=c" (sig.sig32[1]), "=d" (sig.sig32[2]) : "0" (eax) ); |