This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
what is correct output?
- From: howarth at bromo dot msbb dot uc dot edu (Jack Howarth)
- To: fortran at gcc dot gnu dot org
- Date: Sun, 31 Jul 2005 15:43:05 -0400 (EDT)
- Subject: what is correct output?
Is there a standard format for the output from the following code?
PROGRAM HELLO
INTEGER FVIOLS
FVIOLS=0
PRINT *,'FVIOLS =',FVIOLS
END
I see xlf generates code that prints...
FVIOLS = 0
as does the current g95, however gfortran, g77 and the sgi f77 compiler
all produce...
FVIOLS = 0
as output. Thanks in advance for any clarifications.
Jack