Re: [patch, fortran, backport, 4.8] PR51825 - Fortran runtime error: Cannot match namelist object name

2013-04-20 Thread Tilo Schwarz
On Sat, 13 Apr 2013 10:29:26 +0200, Janus Weil wrote: Hi Tilo, I would like to backport the fix for PR51825 I posted here http://gcc.gnu.org/ml/gcc-patches/2013-03/msg00316.html to the 4.8 branch. well, the usual gfortran policy is to only do backports of regression fixes. In exceptional

[patch, fortran, backport, 4.8] PR51825 - Fortran runtime error: Cannot match namelist object name

2013-04-11 Thread Tilo Schwarz
Hi, I would like to backport the fix for PR51825 I posted here http://gcc.gnu.org/ml/gcc-patches/2013-03/msg00316.html to the 4.8 branch. The fix was committed to trunk on Wed, 20 Mar 2013, so it is on trunk now for three weeks. It fixes a namelist issue where namelist lines like arr(2)%a%b

Adding myself as Write After Approval maintainer

2013-03-24 Thread Tilo Schwarz
Adding myself as Write After Approval maintainer. 2013-02-24 Tilo Schwarz * MAINTAINERS (Write After Approval): Add myself. Regards, Tilo MAINTAINERS.patch Description: Binary data

Re: [Patch, libfortran] PR 52512 - Cannot match namelist object name

2013-03-22 Thread Tilo Schwarz
On Fri, 22 Mar 2013 09:13:17 +0100, Janne Blomqvist wrote: On Fri, Mar 22, 2013 at 12:52 AM, Tilo Schwarz wrote: Hi, this patch fixes PR 52512. Built and regtested on Linux 3.2.0-4-686-pae. Ok for trunk (4.9). Thanks for the patch! PS: Common procedure is to report the target triplet

[Patch, libfortran] PR 52512 - Cannot match namelist object name

2013-03-21 Thread Tilo Schwarz
Hi, this patch fixes PR 52512. Built and regtested on Linux 3.2.0-4-686-pae. Regards, Tilo2013-03-15 Tilo Schwarz PR libfortran/52512 * io/list_read.c (nml_parse_qualifier): To check for a derived type don't use the namelist head element type but the current element

Re: [Patch, libfortran, 2nd version] PR 48618 - Negative unit number in OPEN(...) is sometimes allowed

2013-03-19 Thread Tilo Schwarz
On Tue, 19 Mar 2013 12:01:12 +0100, Tobias Burnus wrote: Am 07.03.2013 17:35, schrieb Tilo Schwarz: On Thu, 07 Mar 2013 12:46:10 +0100, Tobias Burnus wrote: Tilo Schwarz wrote: this patch fixes PR 48618. Built and regtested on Linux 3.2.0-4-686-pae. Thanks for the patch, which mostly

*Ping* [Patch, libfortran] PR51825 - Fortran runtime error: Cannot match namelist object name

2013-03-15 Thread Tilo Schwarz
Hi, this is a ping for [Patch, libfortran] PR51825 - Fortran runtime error: Cannot match namelist object name http://gcc.gnu.org/ml/gcc-patches/2013-03/msg00316.html Regards, Tilo

[Patch, libfortran] PR51825 - Fortran runtime error: Cannot match namelist object name

2013-03-07 Thread Tilo Schwarz
Tilo Schwarz PR libfortran/51825 * io/list_read.c (nml_read_obj): Don't end the component loop on a nested derived type, but continue with the next loop iteration. (nml_get_obj_data): Don't move the first_nl pointer further in the list if a qualifier was found. * gcc/testsuite/g

Re: [Patch, libfortran, 2nd version] PR 48618 - Negative unit number in OPEN(...) is sometimes allowed

2013-03-07 Thread Tilo Schwarz
On Thu, 07 Mar 2013 12:46:10 +0100, Tobias Burnus wrote: Hi, Tilo Schwarz wrote: this patch fixes PR 48618. Built and regtested on Linux 3.2.0-4-686-pae. Thanks for the patch, which mostly looks okay. A few remarks: Thank you for the feedback. I incorporated all remarks into the new

Re: [Patch, libfortran, 2nd version] PR 48618 - Negative unit number in OPEN(...) is sometimes allowed

2013-03-07 Thread Tilo Schwarz
;foo.txt", iostat=ios) +if (ios == 0) call abort +end program nutest diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 54ac573..f8e3f52 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2013-03-06 Tilo Schwarz + + PR libfortran/48618 + * i