diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-23 15:23:48 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-04-23 15:23:48 +0000 |
commit | ce2f4b3cb9c1c542a6de6f0cdcd4771fe03a8bb6 (patch) | |
tree | 7d34cd37f59d57295bb37cd4427248d6dda9d970 /target-mips | |
parent | cd7dd10f09a66b0e356f7164850f9270268c0a94 (diff) | |
download | qemu-ce2f4b3cb9c1c542a6de6f0cdcd4771fe03a8bb6.zip |
MIPS single stepping fix (Dirk Behme)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1830 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/op.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index e0d3463be1..3f9b364620 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -604,7 +604,7 @@ void op_trap (void) void op_debug (void) { - CALL_FROM_TB1(do_raise_exception_direct, EXCP_DEBUG); + CALL_FROM_TB1(do_raise_exception, EXCP_DEBUG); } void op_set_lladdr (void) |