From 97b35e359c7f063ef55a1db3c2e200ba431b44e3 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Wed, 1 Jul 2009 19:30:50 +0000 Subject: Suppress a GCC warning Signed-off-by: Blue Swirl --- target-i386/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/helper.c b/target-i386/helper.c index bcaaab71a4..82e1ff114c 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -314,7 +314,7 @@ static int cpu_x86_fill_model_id(char *str) static int cpu_x86_fill_host(x86_def_t *x86_cpu_def) { - uint32_t eax, ebx, ecx, edx; + uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0; x86_cpu_def->name = "host"; host_cpuid(0x0, 0, &eax, &ebx, &ecx, &edx); -- cgit v1.2.1