[v3,0/2] Improving frame printing with recursive

Message ID 20230927101950.1913970-3-blarsen@redhat.com
Headers
Series Improving frame printing with recursive |

Message

Guinevere Larsen Sept. 27, 2023, 10:19 a.m. UTC
  This started with the first patch, just fixing PR record/29178. However,
Kevin pointed out that I could reuse some of the local variables to make
the function as a whole simpler, which I did on patch 2.

Changelog for v3:
* Fix remaining style issues in the testsuite

Changelog for v2:
* Added second patch in the series
* Fixed some tyle issues

Guinevere Larsen (2):
  gdb/record: print frame information when exiting a recursive call
  gdb/infrun: simplify process_event_stop_test

 gdb/infrun.c                            | 36 +++++++++++++-------
 gdb/testsuite/gdb.reverse/recursion.c   | 44 ++++++++++++++++++++++++
 gdb/testsuite/gdb.reverse/recursion.exp | 45 +++++++++++++++++++++++++
 3 files changed, 113 insertions(+), 12 deletions(-)
 create mode 100644 gdb/testsuite/gdb.reverse/recursion.c
 create mode 100644 gdb/testsuite/gdb.reverse/recursion.exp