[Bug target/25998] static executable generated by f951 doesn't work with 32-bit SUNW,UltraAX-e2 (UltraSPARC-IIe)

pinskia at gcc dot gnu dot org gcc-bugzilla@gcc.gnu.org
Sat Jan 28 22:26:00 GMT 2006



------- Comment #5 from pinskia at gcc dot gnu dot org  2006-01-28 22:26 -------
Wait a minute:
c
c   Hello, world.
c
      Program Hello

      implicit none
      logical DONE

      DO while (.NOT. DONE)
        write(*,10)
      END DO
   10 format('Hello, world.')
      END


That is undefined Fortran as DONE is not initialized at all.
Can you try:
c
c   Hello, world.
c
      Program Hello

      implicit none
      logical DONE
      DONE = .true.

      DO while (.NOT. DONE)
        write(*,10)
      END DO
   10 format('Hello, world.')
      END


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25998



More information about the Gcc-bugs mailing list