This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: [PATCH v2 0/2] Two Fortran specific patches for printing data types


Ping.

Just a friendly reminder. I would really appreciate feedback here, especially if it helps me with future submissions:

http://sourceware.org/ml/gdb-patches/2013-09/msg00401.html
http://sourceware.org/ml/gdb-patches/2013-09/msg00402.html

Thanks,
Christoph

-----Original Message-----
From: gdb-patches-owner@sourceware.org [mailto:gdb-patches-owner@sourceware.org] On Behalf Of Christoph Weinmann
Sent: Friday, September 13, 2013 3:36 PM
To: tromey@redhat.com
Cc: gdb-patches@sourceware.org
Subject: [PATCH v2 0/2] Two Fortran specific patches for printing data types

This series solves two issues with printing data types in Fortran.
The first patch fixes the output indentation when printing user-defined types with pointers. The second patch fixes PR 15326, an infinite recursion when printing a recursively nested user-defined type.
V2 adresses indentation and changelog entries, and adds test cases for each patch.

Cheers,
Christoph

Frank Penczek (2):
  Fixed indentation for printing Fortran types with pointers
  Fix PR gdb/15326 infinite recursion when printing Fortran types

 gdb/f-typeprint.c                             |   23 ++++++---
 gdb/testsuite/gdb.fortran/ptr-indentation.exp |   53 +++++++++++++++++++++
 gdb/testsuite/gdb.fortran/ptr-indentation.f90 |   33 +++++++++++++
 gdb/testsuite/gdb.fortran/type-with-ptr.exp   |   63 +++++++++++++++++++++++++
 gdb/testsuite/gdb.fortran/type-with-ptr.f90   |   34 +++++++++++++
 5 files changed, 199 insertions(+), 7 deletions(-)  create mode 100644 gdb/testsuite/gdb.fortran/ptr-indentation.exp
 create mode 100644 gdb/testsuite/gdb.fortran/ptr-indentation.f90
 create mode 100644 gdb/testsuite/gdb.fortran/type-with-ptr.exp
 create mode 100644 gdb/testsuite/gdb.fortran/type-with-ptr.f90

Intel GmbH
Dornacher Strasse 1
85622 Feldkirchen/Muenchen, Deutschland
Sitz der Gesellschaft: Feldkirchen bei Muenchen
Geschaeftsfuehrer: Christian Lamprechter, Hannes Schwaderer, Douglas Lusk
Registergericht: Muenchen HRB 47456
Ust.-IdNr./VAT Registration No.: DE129385895
Citibank Frankfurt a.M. (BLZ 502 109 00) 600119052


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]