Skip to content

Commit

Permalink
Suppress a GCC warning
Browse files Browse the repository at this point in the history
Signed-off-by: Blue Swirl <[email protected]>
  • Loading branch information
blueswirl committed Jul 1, 2009
1 parent 6cb9c6d commit 97b35e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target-i386/helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 97b35e3

Please sign in to comment.