[Bug fortran/94925] Undesired runtime warning message

2020-07-30 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94925

Dominique d'Humieres  changed:

   What|Removed |Added

 Status|WAITING |RESOLVED
 Resolution|--- |INVALID

--- Comment #5 from Dominique d'Humieres  ---
You should not get the warning if you don't ask for. Without reproducer there
is nothing that ca be done. Closing.

[Bug fortran/94925] Undesired runtime warning message

2020-05-18 Thread siteg at mathalacarte dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94925

--- Comment #4 from Fred Krogh  ---
Before submitting this I tried to make a small test case to show the problem. 
It did not show the problem.  I was hoping that the fact that the message just
started and there were no options that would turn it off would be sufficient.
Sorry.

[Bug fortran/94925] Undesired runtime warning message

2020-05-18 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94925

Thomas Koenig  changed:

   What|Removed |Added

 CC||tkoenig at gcc dot gnu.org
 Status|UNCONFIRMED |WAITING
   Last reconfirmed||2020-05-18
 Ever confirmed|0   |1

--- Comment #3 from Thomas Koenig  ---
Please provide a self-contained example and the complete command
line that you use.

[Bug fortran/94925] Undesired runtime warning message

2020-05-04 Thread siteg at mathalacarte dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94925

--- Comment #2 from Fred Krogh  ---
I'm unclear on comment 1.  Are you saying the code is such that this diagnostic
can not be turned off and that is the way it should be, or that there is an a
problem in gfortran with the if that is guarding the diagnostic.  And if the
latter, why not mark the status as confirmed.  Thanks.

[Bug fortran/94925] Undesired runtime warning message

2020-05-03 Thread rguenth at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94925

--- Comment #1 from Richard Biener  ---
The code printing this diagnostic is guarded with

  if (gfc_option.rtcheck & GFC_RTCHECK_ARRAY_TEMPS)
{
  char * msg;

  if (fsym && proc_name)
msg = xasprintf ("An array temporary was created for argument "
 "'%s' of procedure '%s'", fsym->name, proc_name);

and thus

-fcheck-array-temporaries