diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-29 12:03:50 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-06-29 12:03:50 -0400 |
commit | a05a883fbaba69d0f80806e46a9457727fcbe74c (patch) | |
tree | bf42b4af7d2b766c0424514e269a41e8ffc162f6 /gdb/ChangeLog | |
parent | dd4f75f2b6f0be9cb45204aacb3e22462d3c7cd5 (diff) | |
download | binutils-a05a883fbaba69d0f80806e46a9457727fcbe74c.zip binutils-a05a883fbaba69d0f80806e46a9457727fcbe74c.tar.gz binutils-a05a883fbaba69d0f80806e46a9457727fcbe74c.tar.bz2 |
gdb: introduce frame_debug_printf
Introduce frame_debug_printf, to convert the "frame" debug messages to
the new system. Replace fprint_frame with a frame_info::to_string
method that returns a string, like what was done with
frame_id::to_string. This makes it easier to use with
frame_debug_printf.
gdb/ChangeLog:
* frame.h (frame_debug_printf): New.
* frame.c: Use frame_debug_printf throughout when printing frame
debug messages.
* amd64-windows-tdep.c: Likewise.
* value.c: Likewise.
gdb/testsuite/ChangeLog:
* gdb.dwarf2/dw2-reg-undefined.exp: Update regexp.
Change-Id: I3c230b0814ea81c23af3e1aca1aac8d4ba91d726
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2a6a61d..3cda054 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,13 @@ 2021-06-29 Simon Marchi <simon.marchi@polymtl.ca> + * frame.h (frame_debug_printf): New. + * frame.c: Use frame_debug_printf throughout when printing frame + debug messages. + * amd64-windows-tdep.c: Likewise. + * value.c: Likewise. + +2021-06-29 Simon Marchi <simon.marchi@polymtl.ca> + * frame.h (frame_debug): Change type to bool. * frame.c (frame_debug): Change type to bool. (_initialize_frame): Adjust. |