This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug fortran/66575] Endless compilation on missing end interface


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66575

--- Comment #3 from Gerhard Steinmetz <gerhard.steinmetz.fortran@t-online.de> ---
Playing around, I've found other cases (wrong code with procedure)
causing endless compilation on my environment, e.g.


$ cat zlctp_1.f90
program p
   procedure(g) :: g
   procedure(g) :: g
end


$ cat zlctp_2.f90
program p
   procedure(g) :: g
   procedure(g) !! anything
end


$ time gfortran -c zlctp_2.f90      # with 5.1.1, 4.9.0, 4.8.3
# ^C after a few minutes

real    3m46.187s
user    0m0.000s
sys     0m0.002s


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]