[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-31 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-03-31 16:27 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-31 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-31 15:36 --- Subject: Bug 20660 CVSROOT:/cvs/gcc Module name:gcc Branch: gcc-4_0-branch Changes by: [EMAIL PROTECTED] 2005-03-31 15:36:11 Modified files: gcc/testsuite : Change

[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-31 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-31 15:30 --- Subject: Bug 20660 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-03-31 15:30:06 Modified files: gcc/testsuite : ChangeLog libgfortran: C

[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-29 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-03-29 10:52 --- After testing, I proposed this same patch on the mailing-list: http://gcc.gnu.org/ml/fortran/2005-03/msg00519.html -- What|Removed |Added --

[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-29 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-03-29 09:01 --- Stupid of me, sorry the noise. If I understand correctly the Standard, INQUIRE on the existence of a unit should always return TRUE (since we can always open a unit). The patch may be (testing in progress)

[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-28 Thread pinskia at physics dot uc dot edu
--- Additional Comments From pinskia at physics dot uc dot edu 2005-03-29 07:24 --- Subject: Re: INQUIRE incorrectly reports the existence of UNITS On Mar 29, 2005, at 2:13 AM, fxcoudert at gcc dot gnu dot org wrote: > -*ioparm.exist = (u != NULL); > +*ioparm.exist = (u != NU

Re: [Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-28 Thread Andrew Pinski
On Mar 29, 2005, at 2:13 AM, fxcoudert at gcc dot gnu dot org wrote: -*ioparm.exist = (u != NULL); +*ioparm.exist = (u != NULL ? 1 : 0); This change does nothing. -- Pinski

[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-28 Thread fxcoudert at gcc dot gnu dot org
--- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-03-29 07:12 --- I don't have time to test it and submit it correctly, but I think the following should work. I someone has time to do it before I do, please feel free to test/comment/apply. Index: inquire.c

[Bug libfortran/20660] INQUIRE incorrectly reports the existence of UNITS

2005-03-27 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-27 21:59 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW