[Bug fortran/31614] Inability to read ascii text with generic 'f' format

2007-04-18 Thread kargl at gcc dot gnu dot org
--- Comment #3 from kargl at gcc dot gnu dot org 2007-04-18 21:03 --- (In reply to comment #2) > Subject: Re: Inability to read ascii text with generic 'f' format > > read(10,*) doesn't work. I have access to two other compilers > (SGI and Portland Group) and both of them accepted the

[Bug fortran/31614] Inability to read ascii text with generic 'f' format

2007-04-18 Thread Catherine dot M dot Moroney at jpl dot nasa dot gov
--- Comment #2 from Catherine dot M dot Moroney at jpl dot nasa dot gov 2007-04-18 18:16 --- Subject: Re: Inability to read ascii text with generic 'f' format read(10,*) doesn't work. I have access to two other compilers (SGI and Portland Group) and both of them accepted the read(10,

[Bug fortran/31614] Inability to read ascii text with generic 'f' format

2007-04-17 Thread jvdelisle at gcc dot gnu dot org
--- Comment #1 from jvdelisle at gcc dot gnu dot org 2007-04-18 03:44 --- I think you should just use read(10,*) or better yet, read the whole line into a single string and search for the "=" in the string, noting the_position, then use read(stringname(the_position:),*) input list In o