------- 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