projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a484156
)
remove two dead assignments in target-i386/translate.c
author
Paolo Bonzini
<pbonzini@redhat.com>
Thu, 4 Feb 2010 13:31:49 +0000
(14:31 +0100)
committer
Blue Swirl
<blauwirbel@gmail.com>
Fri, 5 Feb 2010 18:13:14 +0000
(18:13 +0000)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
target-i386/translate.c
patch
|
blob
|
history
diff --git
a/target-i386/translate.c
b/target-i386/translate.c
index 807811205493529ce849bf1acc44f73df9c6a7c9..a597e80b9f25212fc43c69e6947031130f923203 100644
(file)
--- a/
target-i386/translate.c
+++ b/
target-i386/translate.c
@@
-4692,8
+4692,6
@@
static target_ulong disas_insn(DisasContext *s, target_ulong pc_start)
ot = dflag + OT_WORD;
modrm = ldub_code(s->pc++);
- mod = (modrm >> 6) & 3;
- rm = (modrm & 7) | REX_B(s);
reg = ((modrm >> 3) & 7) | rex_r;
gen_ldst_modrm(s, modrm, ot, OR_TMP0, 0);