This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: Fix a function decl in gfortran
- From: Tobias Burnus <tobias dot burnus at physik dot fu-berlin dot de>
- To: Tobias Burnus <burnus at net-b dot de>
- Cc: Bernd Schmidt <bernds at codesourcery dot com>, fortran at gcc dot gnu dot org, gcc-patches at gcc dot gnu dot org
- Date: Wed, 4 Jun 2014 09:40:46 +0200
- Subject: Re: Fix a function decl in gfortran
- Authentication-results: sourceware.org; auth=none
- References: <20140527140139 dot GA4291 at physik dot fu-berlin dot de> <538E285C dot 40304 at codesourcery dot com> <538E42AA dot 6050005 at net-b dot de> <538EB918 dot 8050503 at net-b dot de>
Still untested patch, but I cannot resist pointing out stupid
typos by myself.
I intent to tests the build and test the patch - and then to
commit it as obvious. If you see problems with this approach
please scream now.
On Wed, Jun 04, 2014 at 08:13:44AM +0200, Tobias Burnus wrote:
> + To be used together with gfc_se->gnore_optional. */
s/gnore/ignore/
> + if (actual)
> + {
> + gcc_assert (act_arg != NULL);
> + if (act_arg == NULL)
s/act_arg == NULL/act_arg->expr == NULL/
Tobias