diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-09-17 07:03:14 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2012-09-17 07:03:14 +0000 |
commit | 193facb37dbdf7a969ac8c581ec9b3158cfef7ee (patch) | |
tree | e4ab28902d49cc8af92cf5b2ee315961fd4b1f9e /gdb/ChangeLog | |
parent | 53d121fb4e530a840c3aa5fd77a6ab3c658d74eb (diff) | |
download | gdb-193facb37dbdf7a969ac8c581ec9b3158cfef7ee.zip gdb-193facb37dbdf7a969ac8c581ec9b3158cfef7ee.tar.gz gdb-193facb37dbdf7a969ac8c581ec9b3158cfef7ee.tar.bz2 |
gdb/
Code cleanup - rename 'inline' depth to 'artificial' depth.
* breakpoint.c (set_momentary_breakpoint): Rename at a caller to
frame_id_artificial_p, extend the comment.
* dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user.
* frame.c (fprint_frame_id): Rename at a user, change debug output
text to "artificial=".
(skip_inlined_frames): Rename to ...
(skip_artificial_frames): ... here. Extend the comment.
(get_stack_frame_id, frame_unwind_caller_id): Rename at a caller.
(frame_id_inlined_p): Rename to ...
(frame_id_artificial_p): ... here. Rename at a user.
(frame_id_eq, frame_id_inner, frame_unwind_caller_pc)
(frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename
at a user.
* frame.h (struct frame_id): Rename inline_depth to artificial_depth.
Extend the comment.
(frame_id_inlined_p): Rename to ...
(frame_id_artificial_p): ... here.
* inline-frame.c (inline_frame_this_id): Rename at a user.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b5d48f6..141b98c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,25 @@ +2012-09-17 Jan Kratochvil <jan.kratochvil@redhat.com> + + Code cleanup - rename 'inline' depth to 'artificial' depth. + * breakpoint.c (set_momentary_breakpoint): Rename at a caller to + frame_id_artificial_p, extend the comment. + * dwarf2-frame-tailcall.c (tailcall_frame_this_id): Rename at a user. + * frame.c (fprint_frame_id): Rename at a user, change debug output + text to "artificial=". + (skip_inlined_frames): Rename to ... + (skip_artificial_frames): ... here. Extend the comment. + (get_stack_frame_id, frame_unwind_caller_id): Rename at a caller. + (frame_id_inlined_p): Rename to ... + (frame_id_artificial_p): ... here. Rename at a user. + (frame_id_eq, frame_id_inner, frame_unwind_caller_pc) + (frame_unwind_caller_pc_if_available, frame_unwind_caller_arch): Rename + at a user. + * frame.h (struct frame_id): Rename inline_depth to artificial_depth. + Extend the comment. + (frame_id_inlined_p): Rename to ... + (frame_id_artificial_p): ... here. + * inline-frame.c (inline_frame_this_id): Rename at a user. + 2012-09-14 Andrew Burgess <aburgess@broadcom.com> * c-typeprint.c (c_type_print_varspec_suffix): Display the size of |