projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6cb9c6d
)
Suppress a GCC warning
author
Blue Swirl
<blauwirbel@gmail.com>
Wed, 1 Jul 2009 19:30:50 +0000
(19:30 +0000)
committer
Blue Swirl
<blauwirbel@gmail.com>
Wed, 1 Jul 2009 19:30:50 +0000
(19:30 +0000)
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
target-i386/helper.c
patch
|
blob
|
history
diff --git
a/target-i386/helper.c
b/target-i386/helper.c
index bcaaab71a405f1cbaea97f0b9fb8ac2ee185abe3..82e1ff114c05bbe54c2f7f4ca839b2dc8b6017c2 100644
(file)
--- 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);