[Bug fortran/30611] Confusing error message for negative ncopies in REPEAT

2007-02-04 Thread fxcoudert at gcc dot gnu dot org
--- Comment #2 from fxcoudert at gcc dot gnu dot org 2007-02-04 21:33 --- Subject: Bug 30611 Author: fxcoudert Date: Sun Feb 4 21:33:10 2007 New Revision: 121581 URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=121581 Log: PR fortran/30611 * trans-intrinsic.c (g

[Bug fortran/30611] Confusing error message for negative ncopies in REPEAT

2007-02-01 Thread fxcoudert at gcc dot gnu dot org
-- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added Severity|enhancement |normal http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30611

[Bug fortran/30611] Confusing error message for negative ncopies in REPEAT

2007-02-01 Thread fxcoudert at gcc dot gnu dot org
-- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added AssignedTo|unassigned at gcc dot gnu |fxcoudert at gcc dot gnu dot |dot org

[Bug fortran/30611] Confusing error message for negative ncopies in REPEAT

2007-02-01 Thread fxcoudert at gcc dot gnu dot org
--- Comment #1 from fxcoudert at gcc dot gnu dot org 2007-02-01 13:51 --- With a little variation, you get a better error message, although "augument" part could be improved :) $ cat u.f90 integer :: i i = -1 print *, repeat ("", i) end $ gfortran u.f90 && ./a.out Fortran runti