diff options
author | Tobias Schlüter <tobias.schlueter@physik.uni-muenchen.de> | 2005-02-27 17:17:56 +0100 |
---|---|---|
committer | Tobias Schlüter <tobi@gcc.gnu.org> | 2005-02-27 17:17:56 +0100 |
commit | 34d6d42fb48c22c2a17b948019c5fd162b74ff4a (patch) | |
tree | 73554e7745fbe1b6cd6e22f610aa28c5b83fbe40 | |
parent | ac5c8be21e3b5fc0f224b86de1f7a508295b9e41 (diff) | |
download | gcc-34d6d42fb48c22c2a17b948019c5fd162b74ff4a.zip gcc-34d6d42fb48c22c2a17b948019c5fd162b74ff4a.tar.gz gcc-34d6d42fb48c22c2a17b948019c5fd162b74ff4a.tar.bz2 |
write.c (output_float): Fix typo in condition.
libgfortran/
* io/write.c (output_float): Fix typo in condition.
gcc/testsuite/
* gfortran.dg/e_d_fmt.f90: New test.
From-SVN: r95615
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/e_d_fmt.f90 | 13 | ||||
-rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
-rw-r--r-- | libgfortran/io/write.c | 2 |
4 files changed, 22 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index c13dd70..ef1433f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-02-27 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de> + + * gfortran.dg/e_d_fmt.f90: New test. + 2005-02-27 Kazu Hirata <kazu@cs.umass.edu> * gcc.dg/asm-b.c: Fix comment typos. diff --git a/gcc/testsuite/gfortran.dg/e_d_fmt.f90 b/gcc/testsuite/gfortran.dg/e_d_fmt.f90 new file mode 100644 index 0000000..1abfa61 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/e_d_fmt.f90 @@ -0,0 +1,13 @@ +! { dg-do run } +! Verify that the D format uses 'D' as the exponent character. +! " " " E " " 'E' " " " " +CHARACTER*10 c1, c2 +REAL*8 r +r = 1.0 +write(c1,"(e9.2)") r +write(c2,"(d9.2)") r + +if (trim(adjustl(c1)) .ne. "0.10E+01") call abort() +if (trim(adjustl(c2)) .ne. "0.10D+01") call abort() + +END diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 03793e8..c7b5821 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,7 @@ +2004-02-27 Tobias Schl"uter <tobias.schlueter@physik.uni-muenchen.de> + + * io/write.c (output_float): Fix typo in condition. + 2005-02-25 Peter O'Gorman <peter@pogman.com> Toon Moene <toon@moene.indiv.nluug.nl> diff --git a/libgfortran/io/write.c b/libgfortran/io/write.c index 19744d2..d4ee605 100644 --- a/libgfortran/io/write.c +++ b/libgfortran/io/write.c @@ -395,7 +395,7 @@ output_float (fnode *f, double value, int len) nafter = d; } - if (ft = FMT_E) + if (ft == FMT_E) expchar = 'E'; else expchar = 'D'; |