PR fortran/34404
* io/list_read.c (parse_real): Remove superfluous "goto bad;".
2007-12-09 H.J. Lu <hjl@lucon.org>
Tobias Burnus <burnus@net-b.de>
PR fortran/34404
* gfortran.dg/read_2.f90: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130723
138bc75d-0d04-0410-961f-
82ee72b054a4
+2007-12-09 H.J. Lu <hjl@lucon.org>
+ Tobias Burnus <burnus@net-b.de>
+
+ PR fortran/34404
+ * gfortran.dg/read_2.f90: New.
+
2007-12-09 Richard Sandiford <rsandifo@nildram.co.uk>
* lib/target-supports.exp (check_effective_target_tls_native):
--- /dev/null
+! { dg-do run }
+!
+! PR fortran/34404
+!
+! Contributed by Joost VandeVondele.
+!
+implicit none
+complex :: x
+character(len=80) :: t="(1.0E-7,4.0E-3)"
+read(t,*) x
+if (real(x) /= 1.0e-7 .or. aimag(x)/=4.0e-3) call abort()
+END
+2007-12-09 Tobias Burnus <burnus@net-b.de>
+
+ PR fortran/34404
+ * io/list_read.c (parse_real): Remove superfluous "goto bad;".
+
2007-12-08 Tobias Burnus <burnus@net-b.de>
PR fortran/34319
goto bad;
}
- goto bad;
push_char (dtp, c);
for (;;)