From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20782 invoked by alias); 29 Sep 2010 10:40:39 -0000 Received: (qmail 20766 invoked by uid 22791); 29 Sep 2010 10:40:38 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,MISSING_MID X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 29 Sep 2010 10:40:34 +0000 From: "mikael at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/45827] [4.6 Regression] ice in create_int_parameter_array X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: mikael at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 4.6.0 X-Bugzilla-Changed-Fields: CC In-Reply-To: References: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Date: Wed, 29 Sep 2010 13:02:00 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2010-09/txt/msg03079.txt.bz2 Message-ID: <20100929130200.RnOEWz104qe8aWgdxmEBjDD8ApEiE2_e9rVJiDeKDxA@z> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45827 Mikael Morin changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mikael at gcc dot gnu.org --- Comment #5 from Mikael Morin 2010-09-29 10:40:27 UTC --- Joost, I think your problem is different and deserves a separate PR. About the original problem, it seems it is a makefile problem. One needs to insert the module dependencies in the makefile so that make recompiles and updates module files appropriately. Like this: kinds.o kinds.mod: kinds.f90 $(FC) $(FFLAGS) -c $< -o kinds.o arguments.o arguments_module.mod: arguments.f03 kinds.mod $(FC) $(FFLAGS) -c $< -o arguments.o And so on...