aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_cpuid_x86.c
diff options
context:
space:
mode:
authorKeir Fraser <keir@xen.org>2011-12-02 08:40:02 -0800
committerKeir Fraser <keir@xen.org>2011-12-02 08:40:02 -0800
commit96e9e0203347a74a07e8d681b6c6012d2f18d427 (patch)
treeafdc997e856b8d28dcc7ca26bd23591793bc3060 /tools/libxc/xc_cpuid_x86.c
parent51b4edac5476726be451614b2ddbd645b4ce1de4 (diff)
downloadxen-96e9e0203347a74a07e8d681b6c6012d2f18d427.tar.gz
xen-96e9e0203347a74a07e8d681b6c6012d2f18d427.tar.bz2
xen-96e9e0203347a74a07e8d681b6c6012d2f18d427.zip
tools/libxc: Fix x86_32 build breakage in previous changeset.
Signed-off-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'tools/libxc/xc_cpuid_x86.c')
-rw-r--r--tools/libxc/xc_cpuid_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/libxc/xc_cpuid_x86.c b/tools/libxc/xc_cpuid_x86.c
index 939412edc5..1b8da179cc 100644
--- a/tools/libxc/xc_cpuid_x86.c
+++ b/tools/libxc/xc_cpuid_x86.c
@@ -52,7 +52,7 @@ static void cpuid(const unsigned int *input, unsigned int *regs)
"mov %%edx,12(%4)\n\t"
"pop %%edx; pop %%ebx\n\t"
: "=a" (regs[0]), "=c" (regs[2])
- : "0" (input[0]), "1" (count), "S" (_regs)
+ : "0" (input[0]), "1" (count), "S" (regs)
: "memory" );
#else
asm (