This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [Patch, libfortran] Fix for PR 19016
- From: Tobias Schlüter <tobias dot schlueter at physik dot uni-muenchen dot de>
- To: Thomas Koenig <Thomas dot Koenig at online dot de>
- Cc: fortran at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Tue, 12 Apr 2005 22:44:39 +0200
- Subject: Re: [Patch, libfortran] Fix for PR 19016
- References: <20050412202856.GA21477@meiner.onlinehome.de>
Thomas Koenig wrote:
> 2005-04-12 Thomas Koenig <Thomas.Koenig@online.de>
>
> PR libfortran/19106
Ok to commit after you ...
> --- 25,36 ----
> m(1, 1) = .false.
> m(1, 2) = .false.
> b = minloc (a, 1, m)
> + print *,b
> + if (b(1) .ne. 2) call abort
> + if (b(2) .ne. 2) call abort
> + if (b(3) .ne. 3) call abort
> + b = minloc (a, 1, m .and. tr)
> + print *,b
> if (b(1) .ne. 2) call abort
> if (b(2) .ne. 2) call abort
> if (b(3) .ne. 3) call abort
... remove those print statements.
If you find equally simple fixes, please commit them under the obviously
correct rule.
- Tobi