[Bug fortran/18082] Excessively long compile time

2004-10-21 Thread tobi at gcc dot gnu dot org
--- Additional Comments From tobi at gcc dot gnu dot org 2004-10-21 19:01 --- === subroutine FOO ( X ) character(len=*), intent(IN) :: X character(len=len(X)) :: C1 character(len=len(X)) :: C2 ! two lines C1 = '' C2 = '' end subroutine === doesn

[Bug fortran/18082] Excessively long compile time

2004-10-20 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-20 17:15 --- For some reason c1 and c2 are chained together in an infinite list. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18082

[Bug fortran/18082] Excessively long compile time

2004-10-20 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2004-10-20 16:04 --- Confirmed. Reduced testcase: = subroutine FOO ( X ) character(len=*), intent(IN) :: X character(len=len(X)) :: C1, C2 C1 = '' C2 = '' end subroutine

[Bug fortran/18082] Excessively long compile time

2004-10-20 Thread schnetter at aei dot mpg dot de
--- Additional Comments From schnetter at aei dot mpg dot de 2004-10-20 15:53 --- Created an attachment (id=7386) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=7386&action=view) failing source code -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18082