mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 02:24:45 +08:00
re PR libfortran/19155 ([4.0 only] blanks not treated as zeros in 'E' format read (NIST FM110.FOR))
PR libfortran/19155 * io/read.c (convert_real): strtod can set errno to EINVAL on an empty string, but we shouldn't have an error in that case. From-SVN: r101128
This commit is contained in:
parent
a2eafc7685
commit
853a4203b7
@ -1,3 +1,9 @@
|
||||
2005-06-18 Francois-Xavier Coudert <coudert@clipper.ens.fr>
|
||||
|
||||
PR libfortran/19155
|
||||
* io/read.c (convert_real): strtod can set errno to EINVAL on an
|
||||
empty string, but we shouldn't have an error in that case.
|
||||
|
||||
2005-06-17 Francois-Xavier Coudert <coudert@clipper.ens.fr>
|
||||
|
||||
PR libfortran/19216
|
||||
|
@ -122,7 +122,7 @@ convert_real (void *dest, const char *buffer, int length)
|
||||
internal_error ("Unsupported real kind during IO");
|
||||
}
|
||||
|
||||
if (errno != 0)
|
||||
if (errno != 0 && errno != EINVAL)
|
||||
{
|
||||
generate_error (ERROR_READ_VALUE,
|
||||
"Range error during floating point read");
|
||||
|
Loading…
Reference in New Issue
Block a user