projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6a0b9cc
)
i386: Drop redundant kvm_enabled test
author
Jan Kiszka
<jan.kiszka@web.de>
Sat, 12 Sep 2009 14:50:07 +0000
(16:50 +0200)
committer
Blue Swirl
<blauwirbel@gmail.com>
Sat, 12 Sep 2009 15:52:13 +0000
(15:52 +0000)
cpu_synchronize_state already does this.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
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 45b04eeb036c50102060d0d851eedc12a1d71c26..8111f256629d45335c2ee04006cd43ba364fb968 100644
(file)
--- a/
target-i386/helper.c
+++ b/
target-i386/helper.c
@@
-743,8
+743,7
@@
void cpu_dump_state(CPUState *env, FILE *f,
char cc_op_name[32];
static const char *seg_name[6] = { "ES", "CS", "SS", "DS", "FS", "GS" };
- if (kvm_enabled())
- cpu_synchronize_state(env);
+ cpu_synchronize_state(env);
eflags = env->eflags;
#ifdef TARGET_X86_64