projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50366fe
)
Fix logging output for MIPS HI, LO registers, by Stefan Weil.
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 21 Jul 2008 07:46:03 +0000
(07:46 +0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 21 Jul 2008 07:46:03 +0000
(07:46 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4916
c046a42c
-6fe2-441c-8c8c-
71466251a162
target-mips/translate.c
patch
|
blob
|
history
diff --git
a/target-mips/translate.c
b/target-mips/translate.c
index 3b848225a3404242ed3f60ab480b2e62268a2bac..bce010c0346261715c5a079b1ee288a89695ecf6 100644
(file)
--- a/
target-mips/translate.c
+++ b/
target-mips/translate.c
@@
-8694,7
+8694,8
@@
void cpu_dump_state (CPUState *env, FILE *f,
int i;
cpu_fprintf(f, "pc=0x" TARGET_FMT_lx " HI=0x" TARGET_FMT_lx " LO=0x" TARGET_FMT_lx " ds %04x " TARGET_FMT_lx " %d\n",
- env->active_tc.PC, env->active_tc.HI, env->active_tc.LO, env->hflags, env->btarget, env->bcond);
+ env->active_tc.PC, env->active_tc.HI[0], env->active_tc.LO[0],
+ env->hflags, env->btarget, env->bcond);
for (i = 0; i < 32; i++) {
if ((i & 3) == 0)
cpu_fprintf(f, "GPR%02d:", i);