diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-13 22:30:36 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-13 22:30:36 +0000 |
commit | 744e0915969881c86074b2365dec3c5f839b8331 (patch) | |
tree | 7df39ee0761155b941c00314cb00fa61588c39f5 /target-mips | |
parent | e58c8ba5f6b1bd9af00cf5fcebce4bdba0f0aabb (diff) | |
download | qemu-744e0915969881c86074b2365dec3c5f839b8331.zip qemu-744e0915969881c86074b2365dec3c5f839b8331.tar.gz qemu-744e0915969881c86074b2365dec3c5f839b8331.tar.bz2 |
Nicer Log formatting.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2659 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index 92712a8..258744a 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -523,7 +523,7 @@ void debug_pre_eret (void) void debug_post_eret (void) { - fprintf(logfile, " => PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx, + fprintf(logfile, " => PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx, env->PC, env->CP0_EPC); if (env->CP0_Status & (1 << CP0St_ERL)) fprintf(logfile, " ErrorEPC " TARGET_FMT_lx, env->CP0_ErrorEPC); |