This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/47546] [OOP] Internal error - free_pi_tree(): Unresolved fixup
- From: "jvdelisle at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 16 Mar 2011 02:48:43 +0000
- Subject: [Bug fortran/47546] [OOP] Internal error - free_pi_tree(): Unresolved fixup
- Auto-submitted: auto-generated
- References: <bug-47546-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47546
Jerry DeLisle <jvdelisle at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jvdelisle at gcc dot
| |gnu.org
--- Comment #20 from Jerry DeLisle <jvdelisle at gcc dot gnu.org> 2011-03-16 02:48:41 UTC ---
I see the problem on x86-64 linux with current trunk.
Problem goes away if I reverse the order of the use statements:
From:
module hydro_fluxes
use hydro_state
use hydro_speeds
end module
To:
module hydro_fluxes
use hydro_speeds
use hydro_state
end module
This hints at some sort of namespace corruption, maybe related to hydro_speeds
uses hydro_state.