2012-04-13 Luis Machado <lgustavo@codesourcery.com>

* infrun.c (resume): Update PC address to the real PC after
	preparing to do displaced stepping.
This commit is contained in:
Luis Machado 2012-04-13 20:46:42 +00:00
parent 18f5fd8146
commit ca7781d2ae
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-04-13 Luis Machado <lgustavo@codesourcery.com>
* infrun.c (resume): Update PC address to the real PC after
preparing to do displaced stepping.
2012-04-12 Doug Evans <dje@google.com>
* dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused.

View File

@ -1789,6 +1789,10 @@ a command like `return' or `jump' to continue execution."));
return;
}
/* Update pc to reflect the new address from which we will execute
instructions due to displaced stepping. */
pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
step = gdbarch_displaced_step_hw_singlestep (gdbarch,
displaced->step_closure);