This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/50071] gfortran does not distinguish labels in different type scoping units
- From: "mikael at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 18 Aug 2011 23:21:04 +0000
- Subject: [Bug fortran/50071] gfortran does not distinguish labels in different type scoping units
- Auto-submitted: auto-generated
- References: <bug-50071-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50071
Mikael Morin <mikael at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
--- Comment #6 from Mikael Morin <mikael at gcc dot gnu.org> 2011-08-18 23:21:04 UTC ---
(In reply to comment #3)
> ! ----------
> 1 type t
> integer :: i
> end type t
>
> goto 1
> 1 print *, 'Hello'
> end
This is now PR 50121
>
> ! ----------
> block
> goto 1
> print *, 'Hello'
> 1 continue
> end block
> 1 continue
> end
This is now PR 50122
Comment #4 fixed the original issue, and comment #5 an additional one raised by
Tobias. The remaining problems are tracked elsewhere, so this is FIXED.