diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2009-06-17 18:32:40 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2009-06-17 18:32:40 +0000 |
commit | 568d657528fe676571c95e51a2f64112782edfdb (patch) | |
tree | cc319c1e1b6e7d7cf018dcee6209662c250a5ffb /gdb/ChangeLog | |
parent | 64e77c6d5fe85b9f3d20579b496f31c329b1e62b (diff) | |
download | gdb-568d657528fe676571c95e51a2f64112782edfdb.zip gdb-568d657528fe676571c95e51a2f64112782edfdb.tar.gz gdb-568d657528fe676571c95e51a2f64112782edfdb.tar.bz2 |
ChangeLog:
* infrun.c (handle_inferior_event): Use current frame architecture
or thread architecture instead of current_gdbarch. Pass to
handle_step_into_function and handle_step_into_function_backward.
(handle_step_into_function): Add GDBARCH parameter. Use it instead
of current_gdbarch.
(handle_step_into_function_backward): Likewise.
(insert_step_resume_breakpoint_at_frame): Use frame architecture
instead of current_gdbarch.
(insert_step_resume_breakpoint_at_caller): Likewise.
testsuite/ChangeLog:
* gdb.base/annota1.exp: Allow multiple occurrences of the
frames-invalid annotation.
* gdb.cp/annota2.exp: Likewise.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3f91496..320c178 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,15 @@ +2009-06-17 Ulrich Weigand <uweigand@de.ibm.com> + + * infrun.c (handle_inferior_event): Use current frame architecture + or thread architecture instead of current_gdbarch. Pass to + handle_step_into_function and handle_step_into_function_backward. + (handle_step_into_function): Add GDBARCH parameter. Use it instead + of current_gdbarch. + (handle_step_into_function_backward): Likewise. + (insert_step_resume_breakpoint_at_frame): Use frame architecture + instead of current_gdbarch. + (insert_step_resume_breakpoint_at_caller): Likewise. + 2009-06-17 Pierre Muller <muller@ics.u-strasbg.fr> Pedro Alves <pedro@codesourcery.com> |