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]

ping: [PATCH v3 0/6] Some Fortran Patches


Hi all,

#1 and #3 were OK'd;
#2, #4, #5, #6 still need review.

Thanks!
Tim

> -----Original Message-----
> From: Wiederhake, Tim
> Sent: Friday, August 11, 2017 1:07 PM
> To: gdb-patches@sourceware.org
> Cc: qiyaoltc@gmail.com
> Subject: [PATCH v3 0/6] Some Fortran Patches
> 
> Hi all,
> 
> this is a set of mostly unrelated Fortran patches that were originally
> written
> by Bernhard Heckel.
> 
> V1 of this series can be found here:
> https://sourceware.org/ml/gdb-patches/2017-07/msg00317.html
> 
> V2 of this series can be found here:
> https://sourceware.org/ml/gdb-patches/2017-07/msg00317.html
> 
> Changes since V2:
> * Removed unneccesary variable in f_type_print_varspec_suffix.
> * Unified "runto MAIN__" in tests.
> * Replaced kfail with xfail in tests.
> * Patch #6 mentions changes in the correct ChangeLog.
> 
> Patch #1 was OK'd by Yao.
> Patch #6 (documentation) was OK'd by Eli.
> 
> I believe I have addressed all feedback I got so far, please let me know
> If I
> missed something.
> 
> Regards,
> Tim
> 
> *** BLURB HERE ***
> 
> Bernhard Heckel (6):
>   DWARF: Don't add nameless modules to partial symbol table.
>   Fortran: Accessing fields of inherited types via fully qualified name.
>   Fortran: Ptype, print type extension.
>   Dwarf: Fortran, support DW_TAG_entry_point.
>   Fortran: Enable setting breakpoint on nested functions.
>   Fortran: Nested functions, add scope parameter.
> 
>  gdb/doc/gdb.texinfo                           |   3 +
>  gdb/dwarf2read.c                              | 144
> +++++++++++++++++++++++---
>  gdb/f-exp.y                                   |   7 +-
>  gdb/f-typeprint.c                             |  28 ++++-
>  gdb/testsuite/gdb.fortran/block-data.exp      |  49 +++++++++
>  gdb/testsuite/gdb.fortran/block-data.f        |  56 ++++++++++
>  gdb/testsuite/gdb.fortran/entry_point.exp     |  70 +++++++++++++
>  gdb/testsuite/gdb.fortran/entry_point.f90     |  48 +++++++++
>  gdb/testsuite/gdb.fortran/nested-funcs.exp    |  28 +++++
>  gdb/testsuite/gdb.fortran/nested-funcs.f90    |  66 +++++++++++-
>  gdb/testsuite/gdb.fortran/oop_extend_type.exp | 113 ++++++++++++++++++++
>  gdb/testsuite/gdb.fortran/oop_extend_type.f90 |  56 ++++++++++
>  gdb/valops.c                                  |   6 ++
>  13 files changed, 654 insertions(+), 20 deletions(-)
>  create mode 100644 gdb/testsuite/gdb.fortran/block-data.exp
>  create mode 100644 gdb/testsuite/gdb.fortran/block-data.f
>  create mode 100644 gdb/testsuite/gdb.fortran/entry_point.exp
>  create mode 100644 gdb/testsuite/gdb.fortran/entry_point.f90
>  mode change 100755 => 100644 gdb/testsuite/gdb.fortran/nested-funcs.exp
>  mode change 100755 => 100644 gdb/testsuite/gdb.fortran/nested-funcs.f90
>  create mode 100644 gdb/testsuite/gdb.fortran/oop_extend_type.exp
>  create mode 100644 gdb/testsuite/gdb.fortran/oop_extend_type.f90
> 
> --
> 2.7.4

Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Christian Lamprechter
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928


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